Skip to content

Commit 1ff4ca2

Browse files
committed
Debug
1 parent b315bb7 commit 1ff4ca2

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/build-image.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ jobs:
134134
id: actions_ref
135135
shell: bash
136136
run: |
137-
echo "$${{ github.workflow_ref }}, ${{ github.action_ref }}"
137+
echo "${{ github.workflow_ref }}, ${{ github.action_ref }}"
138138
WF_REF='${{ github.workflow_ref }}'
139139
REF="${WF_REF##*@}"
140140
# Fallback to main if empty (should not normally happen)
@@ -187,9 +187,11 @@ jobs:
187187
- name: Determine actions ref
188188
id: actions_ref
189189
shell: bash
190+
env:
191+
GITHUB: ${{ toJSON(github) }}
190192
run: |
191-
echo "$${{ github.workflow_ref }}, ${{ github.action_ref }}"
192-
echo ${{ toJSON(github) }}
193+
echo "${{ github.workflow_ref }}, ${{ github.action_ref }}"
194+
echo ${GITHUB}
193195
WF_REF='${{ github.workflow_ref }}'
194196
REF="${WF_REF##*@}"
195197
# Fallback to main if empty (should not normally happen)

0 commit comments

Comments
 (0)