e775fea265
* fix: GITHUB_ENV / PATH handling * apply workaround * add ctx to ApplyExtraPath * fix: Do not leak step env in composite See https://github.com/nektos/act/pull/1585 for a test * add more tests --------- Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
18 lines
No EOL
343 B
YAML
18 lines
No EOL
343 B
YAML
on: push
|
|
jobs:
|
|
_:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: |
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- run: exit 1
|
|
shell: bash
|
|
if: env.LEAK_ENV != 'val'
|
|
shell: cp {0} action.yml
|
|
- uses: ./
|
|
env:
|
|
LEAK_ENV: val
|
|
- run: exit 1
|
|
if: env.LEAK_ENV == 'val' |