2019-11-08 09:31:16 -05: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 09:39:18 -05:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'master'
|
2019-11-08 09:31:16 -05:00
|
|
|
|
|
|
|
###############
|
|
|
|
# Set the Job #
|
|
|
|
###############
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
# Name the Job
|
2020-01-09 14:04:41 -05:00
|
|
|
name: Deploy Docker Image - PROD
|
2019-11-08 09:31:16 -05:00
|
|
|
# Set the agent to run on
|
|
|
|
runs-on: ubuntu-latest
|
2020-08-10 19:04:35 -04:00
|
|
|
# Only run this on the main repo
|
2020-08-10 18:55:52 -04:00
|
|
|
if: github.repository == 'github/super-linter'
|
2019-11-08 09:31:16 -05:00
|
|
|
##################
|
|
|
|
# Load all steps #
|
|
|
|
##################
|
|
|
|
steps:
|
2019-11-08 09:45:57 -05:00
|
|
|
##########################
|
|
|
|
# Checkout the code base #
|
|
|
|
##########################
|
|
|
|
- name: Checkout Code
|
2020-11-04 00:43:17 -05:00
|
|
|
uses: actions/checkout@v2.3.4
|
2019-11-08 09:45:57 -05:00
|
|
|
|
2020-12-04 13:49:09 -05:00
|
|
|
########################
|
|
|
|
# Get the current date #
|
|
|
|
########################
|
|
|
|
- name: Get current date
|
|
|
|
run: echo "BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> ${GITHUB_ENV}
|
|
|
|
|
2019-11-08 09:45:57 -05:00
|
|
|
#####################
|
|
|
|
# Run Deploy script #
|
|
|
|
#####################
|
2020-06-23 13:08:33 -04:00
|
|
|
- name: Deploy latest image to DockerHub
|
2020-12-04 13:49:09 -05: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=${{ env.BUILD_DATE }} --build-arg=BUILD_REVISION=${{ github.sha }} --build-arg=BUILD_VERSION=${{ github.sha }}"
|
|
|
|
push_image_and_stages: true
|
2020-08-20 13:58:11 -04:00
|
|
|
|
2020-08-24 13:09:00 -04:00
|
|
|
#############################
|
|
|
|
# Run Deploy script for GPR #
|
|
|
|
#############################
|
|
|
|
- name: Deploy Latest image to GitHub Container Registry
|
2020-12-04 13:49:09 -05: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=${{ env.BUILD_DATE }} --build-arg=BUILD_REVISION=$${{ github.sha }} --build-arg=BUILD_VERSION=${{ github.sha }}"
|
|
|
|
push_image_and_stages: true
|