Skip to content

Commit 0d8d80d

Browse files
authored
Update ci.yml
1 parent b47716c commit 0d8d80d

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/ci.yml

+13
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,19 @@ jobs:
4545
runs-on: ${{ matrix.os }}
4646
steps:
4747
- uses: actions/checkout@v4
48+
- name: Step 1
49+
run: |
50+
echo "action_state=yellow" >> $GITHUB_ENV
51+
echo "State is: '${{ env.action_state }}'" # No output since same step
52+
- name: Step 2
53+
run: |
54+
echo "State is: '${{ env.action_state }}'" # Output works
55+
- name: Step 3
56+
env:
57+
OUT_TEST: "011"
58+
- name: Step 4
59+
run: |
60+
echo "env out $OUT_TEST"
4861
- name: update GOCACHE vars
4962
if: runner.os == 'Windows'
5063
run: |

0 commit comments

Comments
 (0)