File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change 6060 id : setup
6161 name : Setup
6262 run : |
63+ DEBUG_OUTPUT=/dev/null
64+ if [ x"${DEBUG_DOCKERD:-}" = x1 ]; then
65+ DEBUG_OUTPUT="$GITHUB_STEP_SUMMARY"
66+ fi
67+
6368 setup_registry () {
6469 >/dev/null docker pull -q docker.io/library/registry:3
6570 registry_id=$(docker run \
@@ -89,11 +94,11 @@ jobs:
8994 }
9095
9196 sudo apt-get -y install skopeo
92- setup_containerd_snapshotter | tee -a "$GITHUB_STEP_SUMMARY "
97+ setup_containerd_snapshotter | tee -a "$DEBUG_OUTPUT "
9398 {
9499 printf '## Registry info:\n\n'
95100 setup_registry | tee -a "$GITHUB_OUTPUT"
96- } | tee -a "$GITHUB_STEP_SUMMARY "
101+ } | tee -a "$DEBUG_OUTPUT "
97102
98103 -
99104 name : Set up QEMU
@@ -264,7 +269,8 @@ jobs:
264269 >&2 printf 'pulled %s (%s)\n' "$IMAGE_TAG" "$platform"
265270 done
266271 {
267- printf '## images\n\n```'
272+ printf '# Test\n\n'
273+ printf '## Source Images\n\n```'
268274 docker images --tree $IMAGE_URI | sed -r "s/\x1B\[([0-9]{1,3}(;[0-9]{1,2};?)?)?[mGK]//g"
269275 printf '\n```\n'
270276 } | tee -a "$GITHUB_STEP_SUMMARY"
You can’t perform that action at this time.
0 commit comments