From c85c18ce08a7af28b81b628e5308a3f8ca1c86da Mon Sep 17 00:00:00 2001 From: Barry d'Hoine Date: Wed, 11 Dec 2024 20:35:58 +0100 Subject: [PATCH] Push manifest after creation --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6048a3c..b39f476 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -89,10 +89,10 @@ jobs: registry: ${{ env.registry }} username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - - name: Push manifest to registry + - name: Create and push manifest to registry run: | IMAGE=${{ env.registry }}/${{ github.repository }}:${{ matrix.runmode }}-${{ env.aem_sdk_version }} - docker manifest create \ - ${IMAGE} \ + docker manifest create ${IMAGE} \ --amend ${IMAGE}-amd64 \ - --amend ${IMAGE}-arm64 \ No newline at end of file + --amend ${IMAGE}-arm64 + docker manifest push ${IMAGE} \ No newline at end of file