mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-22 00:31:07 -05:00
fixed dumb bug
This commit is contained in:
parent
cfdcd9bd9c
commit
e1c5ac81cf
2 changed files with 8 additions and 8 deletions
12
.github/workflows/deploy-PROD.yml
vendored
12
.github/workflows/deploy-PROD.yml
vendored
|
@ -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
|
||||
|
|
4
.github/workflows/deploy-RELEASE.yml
vendored
4
.github/workflows/deploy-RELEASE.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue