diff --git a/.github/workflows/deploy-PROD.yml b/.github/workflows/deploy-PROD.yml index 0a1bb3a6..b5b08631 100644 --- a/.github/workflows/deploy-PROD.yml +++ b/.github/workflows/deploy-PROD.yml @@ -54,14 +54,14 @@ jobs: shell: bash run: .automation/upload-docker.sh - #################### - # Run Deploy script # - ##################### - - name: Deploy latest image to GitHub Container Registry + ############################# + # Run Deploy script for GPR # + ############################# + - name: Deploy Latest image to GitHub Container Registry env: # Set the Env Vars - DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} - DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} + GCR_USERNAME: ${{ secrets.GCR_USERNAME }} + GCR_TOKEN: ${{ secrets.GCR_TOKEN }} IMAGE_REPO: github/super-linter IMAGE_VERSION: latest DOCKERFILE_PATH: Dockerfile diff --git a/.github/workflows/deploy-RELEASE.yml b/.github/workflows/deploy-RELEASE.yml index 5eaa32ef..f87a2e14 100644 --- a/.github/workflows/deploy-RELEASE.yml +++ b/.github/workflows/deploy-RELEASE.yml @@ -60,8 +60,8 @@ jobs: - name: Deploy Release image to GitHub Container Registry env: # Set the Env Vars - GPR_USERNAME: ${{ secrets.GPR_USERNAME }} - GPR_TOKEN: ${{ secrets.GPR_TOKEN }} + GCR_USERNAME: ${{ secrets.GCR_USERNAME }} + GCR_TOKEN: ${{ secrets.GCR_TOKEN }} IMAGE_REPO: github/super-linter IMAGE_VERSION: ${{ github.event.release.tag_name }} DOCKERFILE_PATH: Dockerfile