Skip to content

Commit 076fe0c

Browse files
authored
chore(ci): fix unescaped echo to dump github context (#5163)
1 parent cb8eab1 commit 076fe0c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/vrt.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,9 @@ jobs:
157157

158158
- name: Dump GitHub context event
159159
id: github_context_event_step
160-
run: echo '${{ toJSON(github.event) }}'
160+
env:
161+
GITHUB_EVENT_CONTEXT: ${{ toJson(github.event) }}
162+
run: echo "$GITHUB_EVENT_CONTEXT"
161163

162164
- name: Show GitHub context
163165
env:

0 commit comments

Comments
 (0)