We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fb87ef commit 7fd5a59Copy full SHA for 7fd5a59
.github/actions/get-release-info/action.yml
@@ -41,4 +41,13 @@ runs:
41
# extract changelog, save it to a file, and output the filename
42
jq -r .body release.json > /tmp/changelog.md
43
echo "changelog-file=$(echo /tmp/changelog.md)" >> $GITHUB_OUTPUT
44
-
+
45
+ - name: dump contexts
46
+ shell: bash
47
+ if: runner.debug
48
+ run: |
49
+ echo "${{ toJson(env) }}"
50
+ echo "${{ toJson(github )}}"
51
+ echo "${{ toJson(job) }}"
52
+ echo "${{ toJson(steps) }}"
53
+ printenv
0 commit comments