From cd0280aede0741e50a38aa63649c8d686ecf68a2 Mon Sep 17 00:00:00 2001 From: Antoine Lorence Date: Fri, 13 Dec 2024 22:02:55 +0100 Subject: [PATCH] Change push method --- .github/workflows/build_and_publish.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_and_publish.yml b/.github/workflows/build_and_publish.yml index a2d4c2c..5ceb65a 100644 --- a/.github/workflows/build_and_publish.yml +++ b/.github/workflows/build_and_publish.yml @@ -58,7 +58,7 @@ jobs: uses: docker/build-push-action@v6.10.0 with: platforms: linux/amd64,linux/arm - push: true + push: false tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} annotations: ${{ steps.meta.outputs.annotations }} @@ -67,6 +67,9 @@ jobs: build-args: | VERSION=${{ env.VERSION }} + - name: Push to ghcr.io + run: docker push -a ${{ env.IMAGE_NAME }} + # - name: Generate artifact attestation # uses: actions/attest-build-provenance@v2.1.0 # with: