From 9557daa94f1a2e4867cd2028d7fec0a811146eaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivan=20=C5=A0ari=C4=87?= Date: Sun, 24 Dec 2023 18:19:22 +0100 Subject: [PATCH] Update docker-publish.yml --- .github/workflows/docker-publish.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index daed0e5..9057286 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -19,9 +19,9 @@ env: # github.repository as / IMAGE_NAME: ${{ github.repository }} - IMAGE_NAME_ARM64: ${{ github.repository }}:${{ github.ref_name }}-arm64 + TAG_ARM64: path-variable/python-slack-fr:${{ github.ref_name }}-arm64 - IMAGE_NAME_AMD64: ${{ github.repository }}:${{ github.ref_name }}-amd64 + TAG_AMD64: path-variable/python-slack-fr:${{ github.ref_name }}-amd64 jobs: @@ -86,7 +86,7 @@ jobs: context: . file: dockerfile-arm64 push: ${{ github.event_name != 'pull_request' }} - tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME_ARM64 }} + tags: ${{ env.REGISTRY }}/${{ env.TAG_ARM64 }} labels: ${{ steps.meta-arm64.outputs.labels }} cache-from: type=gha cache-to: type=gha,mode=max @@ -99,7 +99,7 @@ jobs: context: . file: dockerfile-amd64 push: ${{ github.event_name != 'pull_request' }} - tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME_AMD64 }} + tags: ${{ env.REGISTRY }}/${{ env.TAG_AMD64 }} labels: ${{ steps.meta-amd64.outputs.labels }} cache-from: type=gha cache-to: type=gha,mode=max