feat(action): try updating environment variable across steps
Some checks failed
/ checkout (push) Failing after 0s
Some checks failed
/ checkout (push) Failing after 0s
This commit is contained in:
parent
06a687dadc
commit
1095382fac
1 changed files with 8 additions and 2 deletions
|
|
@ -9,7 +9,13 @@ jobs:
|
|||
env:
|
||||
test: value
|
||||
steps:
|
||||
- name: list directory contents
|
||||
- name: checkout
|
||||
run: |
|
||||
git checkout
|
||||
- name: Output and update env.test
|
||||
run: |
|
||||
echo ${{ env.test }}
|
||||
echo 'test=good' >> $FORGEJO_OUTPUT
|
||||
- name: Output updated env.test?
|
||||
run: |
|
||||
ls -la
|
||||
echo ${{ env.test }}
|
||||
|
|
|
|||
Loading…
Reference in a new issue