a0d360236e
* fix: rewrite StepContext env step env from workflow should be last one to be written fixes https://github.com/nektos/act/issues/777 * test: verify env correctness * fix: move test into existing workflow
16 lines
402 B
YAML
16 lines
402 B
YAML
name: local-action-dockerfile
|
|
on: push
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: ./actions/docker-local
|
|
with:
|
|
who-to-greet: 'Mona the Octocat'
|
|
- run: '[[ "${{ env.SOMEVAR }}" == "Mona the Octocat" ]]'
|
|
- run: '[ "${SOMEVAR}" = "Not Mona" ] || exit 1'
|
|
env:
|
|
SOMEVAR: 'Not Mona'
|
|
- uses: ./localdockerimagetest_
|