We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2933f66 commit 4f626b1Copy full SHA for 4f626b1
.github/workflows/pr-on-release.yml
@@ -19,7 +19,7 @@ jobs:
19
run: echo "action_state=yellow" >> $GITHUB_ENV
20
- name: Use the value
21
id: step_two
22
- run: echo "${{ env.action_state }}" # This will output 'yellow'
+ run: echo "ACTION ${{ env.action_state }}" # This will output 'yellow'
23
24
- name: Get release version
25
run: echo "version=${{ github.event.release.tag_name }}" >> GITHUB_ENV
@@ -30,6 +30,10 @@ jobs:
30
repository: bmunkholm/test2
31
ref: main
32
33
+ - name: Use the value
34
+ id: step_two
35
36
+
37
- name: Update version file
38
run: |
39
echo "${{ env.version }}" > version.txt
0 commit comments