lint/.github/workflows/deploy-PROD.yml

71 lines
1.9 KiB
YAML
Raw Normal View History

2019-11-08 08:31:16 -06:00
---
#########################
#########################
## Deploy Docker Image ##
#########################
#########################
#
# Documentation:
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
#
#######################################
# Start the job on all push to master #
#######################################
2019-11-08 08:39:18 -06:00
on:
push:
branches:
- 'master'
2019-11-08 08:31:16 -06:00
###############
# Set the Job #
###############
jobs:
build:
# Name the Job
2020-01-09 13:04:41 -06:00
name: Deploy Docker Image - PROD
2019-11-08 08:31:16 -06:00
# Set the agent to run on
runs-on: ubuntu-latest
2020-08-11 00:04:35 +01:00
# Only run this on the main repo
if: github.repository == 'github/super-linter'
2019-11-08 08:31:16 -06:00
##################
# Load all steps #
##################
steps:
2019-11-08 08:45:57 -06:00
##########################
# Checkout the code base #
##########################
- name: Checkout Code
uses: actions/checkout@v2.3.3
2019-11-08 08:45:57 -06:00
#####################
# Run Deploy script #
#####################
2020-06-23 12:08:33 -05:00
- name: Deploy latest image to DockerHub
2019-11-08 08:42:17 -06:00
env:
# Set the Env Vars
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
2020-06-18 13:53:45 -05:00
IMAGE_REPO: github/super-linter
2019-11-08 08:42:17 -06:00
IMAGE_VERSION: latest
DOCKERFILE_PATH: Dockerfile
2020-06-23 12:08:33 -05:00
REGISTRY: Docker
2019-11-08 08:31:16 -06:00
shell: bash
run: .automation/upload-docker.sh
2020-08-20 12:58:11 -05:00
2020-08-24 12:09:00 -05:00
#############################
# Run Deploy script for GPR #
#############################
- name: Deploy Latest image to GitHub Container Registry
2020-08-20 12:58:11 -05:00
env:
# Set the Env Vars
2020-08-24 12:09:00 -05:00
GCR_USERNAME: ${{ secrets.GCR_USERNAME }}
GCR_TOKEN: ${{ secrets.GCR_TOKEN }}
2020-08-20 12:58:11 -05:00
IMAGE_REPO: github/super-linter
IMAGE_VERSION: latest
DOCKERFILE_PATH: Dockerfile
2020-08-20 13:18:17 -05:00
REGISTRY: GCR
2020-08-20 12:58:11 -05:00
shell: bash
run: .automation/upload-docker.sh