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

70 lines
2.1 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.4
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
2020-12-03 14:39:32 -06:00
uses: whoan/docker-build-with-cache-action@v5
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
image_name: github/super-linter
image_tag: "latest,v3"
dockerfile: Dockerfile
build_extra_args: "--build-arg=BUILD_DATE=${BUILD_DATE} --build-arg=BUILD_REVISION=${GITHUB_SHA} --build-arg=BUILD_VERSION=${GITHUB_SHA}"
push_image_and_stages: true
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-12-03 14:39:32 -06:00
uses: whoan/docker-build-with-cache-action@v5
with:
username: ${{ secrets.GCR_USERNAME }}
password: ${{ secrets.GCR_TOKEN }}
registry: ghcr.io
image_name: github/super-linter
image_tag: "latest,v3"
dockerfile: Dockerfile
build_extra_args: "--build-arg=BUILD_DATE=${BUILD_DATE} --build-arg=BUILD_REVISION=${GITHUB_SHA} --build-arg=BUILD_VERSION=${GITHUB_SHA}"
push_image_and_stages: true