From af4d5012f65c6068147677822e2d2efc477c94ad Mon Sep 17 00:00:00 2001 From: Rahul Date: Thu, 9 Jan 2025 17:22:20 +0600 Subject: [PATCH] =?UTF-8?q?Github=20workflow=20updated=20=F0=9F=8F=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/publish-image.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish-image.yml b/.github/workflows/publish-image.yml index f3466f2..912eb6e 100644 --- a/.github/workflows/publish-image.yml +++ b/.github/workflows/publish-image.yml @@ -30,11 +30,11 @@ jobs: - name: Build Docker image run: | docker build -f Dockerfile.release \ - -t ghcr.io/${{ github.repository_owner }}/${{ github.repository }}-alpine:${{ env.VERSION }} \ - -t ghcr.io/${{ github.repository_owner }}/${{ github.repository }}-alpine:latest . + -t ghcr.io/${{ github.repository }}-alpine:${{ env.VERSION }} \ + -t ghcr.io/${{ github.repository }}-alpine:latest . # Push the Docker image - name: Push Docker image run: | - docker push ghcr.io/${{ github.repository_owner }}/${{ github.repository }}-alpine:${{ env.VERSION }} - docker push ghcr.io/${{ github.repository_owner }}/${{ github.repository }}-alpine:latest + docker push ghcr.io/${{ github.repository }}-alpine:${{ env.VERSION }} + docker push ghcr.io/${{ github.repository }}-alpine:latest