File tree 1 file changed +8
-1
lines changed
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change 66
66
67
67
- name : Capture Image Digest
68
68
id : capture-digest
69
- run : echo "digest_${{ matrix.arch }}=${{ steps.build.outputs.digest }}" >> $GITHUB_ENV
69
+ run : |
70
+ echo "digest_${{ matrix.arch }}=${{ steps.build.outputs.digest }}" >> $GITHUB_ENV
71
+ echo "::set-output name=digest_${{ matrix.arch }}::${{ steps.build.outputs.digest }}"
70
72
71
73
merge :
72
74
runs-on : ubuntu-latest
75
77
- name : Get sanitized Docker tag
76
78
run : echo "DOCKER_TAG=$(echo $GIT_TAG | sed 's/[^a-zA-Z0-9\.]/-/g')" >> $GITHUB_ENV
77
79
80
+ - name : Debug Output Digests
81
+ run : |
82
+ echo "AMD64 Digest: ${{ needs.build-image-at-tag.outputs.digest_amd64 }}"
83
+ echo "ARM64 Digest: ${{ needs.build-image-at-tag.outputs.digest_arm64 }}"
84
+
78
85
- name : Login to DockerHub
79
86
if : ${{ github.event_name != 'pull_request' }}
80
87
uses : docker/login-action@v3
You can’t perform that action at this time.
0 commit comments