From 08891d493917c5140fa084a250e7221128fc753d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oph=C3=A9lie=20Le=20Mentec?= <17216799+ouphi@users.noreply.github.com> Date: Tue, 31 Oct 2023 21:07:41 +0100 Subject: [PATCH] removed manifest creation in previous step. --- .github/workflows/create_release.yaml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/create_release.yaml b/.github/workflows/create_release.yaml index 704b3043e2..7689ccbada 100644 --- a/.github/workflows/create_release.yaml +++ b/.github/workflows/create_release.yaml @@ -34,12 +34,6 @@ jobs: run: | docker buildx build -f "./LoRaEngine/modules/LoRaWanNetworkSrvModule/Dockerfile.${{ matrix.image }}" -t $DOCKERHUB_ORGANISATION/lorawannetworksrvmodule:$VERSION-${{ matrix.image }} --output type=image,push=true "." docker buildx build -f "./LoRaEngine/modules/LoRaBasicsStationModule/Dockerfile.${{ matrix.image }}" -t $DOCKERHUB_ORGANISATION/lorabasicsstationmodule:$VERSION-${{ matrix.image }} --build-arg CONTAINER_REGISTRY_ADDRESS=docker.io --output type=image,push=true "." - - name: Create manifests - run: | - docker manifest create $DOCKERHUB_ORGANISATION/lorawannetworksrvmodule:$VERSION $DOCKERHUB_ORGANISATION/lorawannetworksrvmodule:$VERSION-${{ matrix.image }} --amend - docker manifest create $DOCKERHUB_ORGANISATION/lorabasicsstationmodule:$VERSION $DOCKERHUB_ORGANISATION/lorabasicsstationmodule:$VERSION-${{ matrix.image }} --amend - docker manifest push $DOCKERHUB_ORGANISATION/lorabasicsstationmodule:$VERSION - docker manifest push $DOCKERHUB_ORGANISATION/lorawannetworksrvmodule:$VERSION env: DOCKERHUB_ORGANISATION: ${{ secrets.DOCKER_REPOSITORY }}