Skip to content

Commit 7fd5a59

Browse files
authored
get-release-info: add debugging step
1 parent 9fb87ef commit 7fd5a59

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/actions/get-release-info/action.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,13 @@ runs:
4141
# extract changelog, save it to a file, and output the filename
4242
jq -r .body release.json > /tmp/changelog.md
4343
echo "changelog-file=$(echo /tmp/changelog.md)" >> $GITHUB_OUTPUT
44-
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

Comments
 (0)