fixed dumb bug

This commit is contained in:
Lucas Gravley 2020-08-24 12:09:00 -05:00
parent cfdcd9bd9c
commit e1c5ac81cf
2 changed files with 8 additions and 8 deletions

View file

@ -54,14 +54,14 @@ jobs:
shell: bash shell: bash
run: .automation/upload-docker.sh run: .automation/upload-docker.sh
#################### #############################
# Run Deploy script # # Run Deploy script for GPR #
##################### #############################
- name: Deploy latest image to GitHub Container Registry - name: Deploy Latest image to GitHub Container Registry
env: env:
# Set the Env Vars # Set the Env Vars
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} GCR_USERNAME: ${{ secrets.GCR_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} GCR_TOKEN: ${{ secrets.GCR_TOKEN }}
IMAGE_REPO: github/super-linter IMAGE_REPO: github/super-linter
IMAGE_VERSION: latest IMAGE_VERSION: latest
DOCKERFILE_PATH: Dockerfile DOCKERFILE_PATH: Dockerfile

View file

@ -60,8 +60,8 @@ jobs:
- name: Deploy Release image to GitHub Container Registry - name: Deploy Release image to GitHub Container Registry
env: env:
# Set the Env Vars # Set the Env Vars
GPR_USERNAME: ${{ secrets.GPR_USERNAME }} GCR_USERNAME: ${{ secrets.GCR_USERNAME }}
GPR_TOKEN: ${{ secrets.GPR_TOKEN }} GCR_TOKEN: ${{ secrets.GCR_TOKEN }}
IMAGE_REPO: github/super-linter IMAGE_REPO: github/super-linter
IMAGE_VERSION: ${{ github.event.release.tag_name }} IMAGE_VERSION: ${{ github.event.release.tag_name }}
DOCKERFILE_PATH: Dockerfile DOCKERFILE_PATH: Dockerfile