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 fa5ec6f commit e3d6eb2Copy full SHA for e3d6eb2
.github/workflows/docker-images.yml
@@ -160,5 +160,9 @@ jobs:
160
working-directory: ${{ runner.temp }}/digests
161
run: |
162
for i in *; do
163
- docker buildx imagetools inspect "tunathu/$i:${{ steps.docker_tag.outputs.docker_tag }}"
+ DOCKER_IMG="tunathu/$i:${{ steps.docker_tag.outputs.docker_tag }}"
164
+ echo "## $DOCKER_IMG" >> $GITHUB_STEP_SUMMARY
165
+ echo "```" >> $GITHUB_STEP_SUMMARY
166
+ docker buildx imagetools inspect "$DOCKER_IMG" | tee -a $GITHUB_STEP_SUMMARY
167
168
done
0 commit comments