From af7902fd4ed01b860298275089eba7753603df2d Mon Sep 17 00:00:00 2001 From: Michael Richardson Date: Sat, 4 Nov 2023 12:32:36 +1000 Subject: [PATCH] correcting docker tag to include registry --- .github/workflows/release-pull-request.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-pull-request.yml b/.github/workflows/release-pull-request.yml index 87fc25b..7dcb0ae 100644 --- a/.github/workflows/release-pull-request.yml +++ b/.github/workflows/release-pull-request.yml @@ -44,7 +44,7 @@ jobs: with: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} - - name: Docker login + - name: Login to GitHub Container Registry uses: docker/login-action@v3 with: registry: ghcr.io @@ -59,7 +59,7 @@ jobs: with: context: . push: true - tags: ${{ steps.branch-name.outputs.current_branch }}.${{ github.run_id }} + tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.branch-name.outputs.current_branch }}.${{ github.run_id }} labels: ${{ steps.meta.outputs.labels }} cache-from: type=gha cache-to: type=gha,mode=max