mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-22 06:01:05 -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
|
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
|
||||||
|
|
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
|
- 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
|
||||||
|
|
Loading…
Reference in a new issue