2020-06-23 10:56:16 -04:00
|
|
|
---
|
|
|
|
#########################
|
|
|
|
#########################
|
|
|
|
## Deploy Docker Image ##
|
|
|
|
#########################
|
|
|
|
#########################
|
|
|
|
|
|
|
|
#
|
|
|
|
# Documentation:
|
|
|
|
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
|
|
|
|
#
|
|
|
|
|
|
|
|
#######################################
|
|
|
|
# Start the job on all push to master #
|
|
|
|
#######################################
|
|
|
|
on:
|
|
|
|
release:
|
|
|
|
# Want to run the automation when a release is created
|
|
|
|
types: ['created']
|
|
|
|
|
|
|
|
###############
|
|
|
|
# Set the Job #
|
|
|
|
###############
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
# Name the Job
|
|
|
|
name: Deploy Docker Image - Release
|
|
|
|
# Set the agent to run on
|
|
|
|
runs-on: ubuntu-latest
|
2020-08-11 09:09:57 -04:00
|
|
|
# Only run on main repo
|
|
|
|
if: github.repository == 'github/super-linter'
|
2020-06-23 10:56:16 -04:00
|
|
|
##################
|
|
|
|
# Load all steps #
|
|
|
|
##################
|
|
|
|
steps:
|
|
|
|
##########################
|
|
|
|
# Checkout the code base #
|
|
|
|
##########################
|
|
|
|
- name: Checkout Code
|
2020-11-04 00:43:17 -05:00
|
|
|
uses: actions/checkout@v2.3.4
|
2020-06-23 10:56:16 -04: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}
|
|
|
|
|
2020-06-23 10:56:16 -04:00
|
|
|
###################################
|
|
|
|
# Run Deploy script for Dockerhub #
|
|
|
|
###################################
|
|
|
|
- name: Deploy Release image to Dockerhub
|
2020-12-03 17:17:55 -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: ${{ github.event.release.tag_name }}
|
|
|
|
dockerfile: Dockerfile
|
2020-12-04 13:49:09 -05:00
|
|
|
build_extra_args: "--build-arg=BUILD_DATE=${{ env.BUILD_DATE }} --build-arg=BUILD_REVISION=${{ github.sha }} --build-arg=BUILD_VERSION=${{ github.sha }}"
|
2020-12-03 17:17:55 -05:00
|
|
|
push_image_and_stages: true
|
2020-06-23 10:56:16 -04:00
|
|
|
|
2020-09-02 12:11:56 -04:00
|
|
|
###################################################
|
|
|
|
# Run Deploy script for GitHub Container Registry #
|
|
|
|
###################################################
|
2020-08-20 13:58:11 -04:00
|
|
|
- name: Deploy Release image to GitHub Container Registry
|
2020-12-03 17:17:55 -05:00
|
|
|
uses: whoan/docker-build-with-cache-action@v5
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.GCR_USERNAME }}
|
|
|
|
password: ${{ secrets.GCR_PASSWORD }}
|
|
|
|
repository: ghcr.io
|
|
|
|
image_name: github/super-linter
|
|
|
|
image_tag: ${{ github.event.release.tag_name }}
|
|
|
|
dockerfile: Dockerfile
|
2020-12-04 13:49:09 -05:00
|
|
|
build_extra_args: "--build-arg=BUILD_DATE=${{ github.event.timestamp }}Z --build-arg=BUILD_REVISION=${{ github.sha }} --build-arg=BUILD_VERSION=${{ github.sha }}"
|
2020-12-03 17:17:55 -05:00
|
|
|
push_image_and_stages: true
|