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