File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed
Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change 8484 with :
8585 tag_name : ${{ needs.release.outputs.release-git-tag }}
8686 files : ${{ matrix.architecture }}-${{ matrix.ostype }}.tar.gz
87+
88+ multi-arch :
89+ needs : [release, artifacts]
90+ name : Create Release Artifacts
91+ if : ${{ needs.release.outputs.published == 'true' }}
92+ strategy :
93+ matrix :
94+ ostype : [linux-gnu, linux-musl]
95+ runs-on : ubuntu-latest
96+ steps :
97+ - name : Combine per architecture images into a single multi-arch manifest
98+ run : |
99+ docker pull ghcr.io/kong/template-github-release:${{ needs.release.outputs.release-git-tag }}-aarch64-${{ matrix.ostype }}
100+ docker pull ghcr.io/kong/template-github-release:${{ needs.release.outputs.release-git-tag }}-x86_64-${{ matrix.ostype }}
101+ docker manifest ghcr.io/kong/template-github-release:${{ needs.release.outputs.release-git-tag }}-${{ matrix.ostype }} \
102+ ghcr.io/kong/template-github-release:${{ needs.release.outputs.release-git-tag }}-aarch64-${{ matrix.ostype }} \
103+ ghcr.io/kong/template-github-release:${{ needs.release.outputs.release-git-tag }}-x86_64-${{ matrix.ostype }}
104+ ghcr.io/kong/template-github-release:${{ needs.release.outputs.release-git-tag }}-${{ matrix.ostype }}
You can’t perform that action at this time.
0 commit comments