From db1c1231802627a2a6dd9062c34f60d96ebc3f7c Mon Sep 17 00:00:00 2001 From: Felix Schneider Date: Wed, 30 Oct 2024 21:40:24 +0100 Subject: [PATCH] Fix latest tag --- .github/workflows/publish_image.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/publish_image.yml b/.github/workflows/publish_image.yml index 4ea3406..7215ccf 100644 --- a/.github/workflows/publish_image.yml +++ b/.github/workflows/publish_image.yml @@ -41,15 +41,15 @@ jobs: file: Dockerfile push: true platforms: linux/amd64,linux/arm64 - tags: ${{ steps.meta.outputs.tags }} + tags: ${{ steps.meta.outputs.tags }},${{ env.REGISTRY}}/${{ env.IMAGE_NAME }}:latest labels: ${{ steps.meta.outputs.labels }} - - name: Build and push Docker image as latest - uses: docker/build-push-action@v5 - with: - context: . - file: Dockerfile - push: true - platforms: linux/amd64,linux/arm64 - tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }}:latest + # - name: Build and push Docker image as latest + # uses: docker/build-push-action@v5 + # with: + # context: . + # file: Dockerfile + # push: true + # platforms: linux/amd64,linux/arm64 + # tags: latest + # labels: ${{ steps.meta.outputs.labels }}