2020-06-23 10:56:16 -04:00
---
2021-02-25 09:57:42 -05:00
#################################
#################################
## Deploy Release Docker Image ##
#################################
#################################
2020-06-23 10:56:16 -04:00
#
# Documentation:
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
#
2021-10-01 15:57:26 -04:00
##########################################
# Start the job upon a published release #
##########################################
2020-06-23 10:56:16 -04:00
on :
2021-07-13 16:20:17 -04:00
# Start when a release is published
release :
types : [ 'published' ]
2020-06-23 10:56:16 -04:00
###############
# Set the Job #
###############
jobs :
2021-03-05 12:25:06 -05:00
deploy :
# Name the Job
2021-05-25 15:07:27 -04:00
name : Deploy Docker Image - Release - standard
2021-03-05 12:25:06 -05:00
# Set the agent to run on
runs-on : ubuntu-latest
2021-03-08 15:13:04 -05:00
2021-03-05 12:25:06 -05:00
#####################################################################
# Only run if Admin start job and it was the Release Issue template #
#####################################################################
2021-09-14 09:32:24 -04:00
if : ${{ github.actor == 'admiralawkbar' || github.actor == 'jwiebalk' ||
github.actor == 'IAmHughes' || github.actor == 'nemchik' ||
github.actor == 'Hanse00' || github.actor == 'github-actions' ||
github.actor == 'GaboFDC' || github.actor == 'ferrarimarco' }}
2021-02-25 09:57:42 -05:00
2021-11-15 11:25:36 -05:00
timeout-minutes : 60
2020-06-23 10:56:16 -04:00
##################
# Load all steps #
##################
steps :
##########################
# Checkout the code base #
##########################
- name : Checkout Code
2021-11-10 12:53:31 -05:00
uses : actions/checkout@v2.4.0
2020-06-23 10:56:16 -04:00
2021-02-25 09:57:42 -05:00
#########################
# Update deployment API #
#########################
- name : Start deployment
2022-01-03 11:49:00 -05:00
uses : bobheadxi/deployments@v0.6.2
2021-02-25 09:57:42 -05:00
id : deployment
with :
step : start
token : ${{ secrets.GITHUB_TOKEN }}
env : Release
2020-12-04 13:49:09 -05:00
########################
# Get the current date #
########################
- name : Get current date
2021-12-10 11:15:12 -05:00
run : |
echo "Appending the build date contents to GITHUB_ENV..."
echo "BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> "${GITHUB_ENV}"
2020-12-04 13:49:09 -05:00
2020-12-04 18:31:42 -05:00
########################
# Setup Docker build X #
########################
- name : Setup BuildX
2021-09-07 10:09:45 -04:00
uses : docker/setup-buildx-action@v1.6.0
2020-12-04 18:31:42 -05:00
2020-12-04 18:15:51 -05:00
###############################
# Login to DockerHub registry #
###############################
- name : Login to DockerHub
2021-12-20 13:19:38 -05:00
uses : docker/login-action@v1.12.0
2020-12-03 17:17:55 -05:00
with :
username : ${{ secrets.DOCKER_USERNAME }}
password : ${{ secrets.DOCKER_PASSWORD }}
2020-06-23 10:56:16 -04:00
2020-12-04 18:15:51 -05:00
######################################
# Login to GitHub Container registry #
######################################
- name : Login to GitHub Container Registry
2021-12-20 13:19:38 -05:00
uses : docker/login-action@v1.12.0
2020-12-03 17:17:55 -05:00
with :
2020-12-04 18:21:08 -05:00
username : ${{ secrets.GCR_USERNAME }}
2020-12-04 18:15:51 -05:00
password : ${{ secrets.GCR_TOKEN }}
2020-12-04 19:06:17 -05:00
registry : ghcr.io
2020-12-04 18:15:51 -05:00
2021-08-31 13:37:27 -04:00
###########################
# Get the current release #
###########################
- name : Get current Release number
# shellcheck disable=SC2062
run : |
echo "RELEASE_VERSION=$(echo ${{ github.event.release.name }} \
| grep -E -o "v[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+")" \
>> "${GITHUB_ENV}"
2021-06-24 11:19:42 -04:00
################
# Docker cache #
################
- name : Cache Docker layers
uses : actions/cache@v2
with :
path : /tmp/.buildx-cache
key : ${{ runner.os }}-single-buildx-standard
restore-keys : |
${{ runner.os }}-single-buildx
2020-12-04 18:15:51 -05:00
###########################################
# Build and Push containers to registries #
###########################################
2021-05-25 11:14:43 -04:00
- name : Build and push - Standard
2021-08-24 12:18:02 -04:00
uses : docker/build-push-action@v2.7.0
2020-12-04 18:15:51 -05:00
with :
context : .
file : ./Dockerfile
build-args : |
BUILD_DATE=${{ env.BUILD_DATE }}
BUILD_REVISION=${{ github.sha }}
BUILD_VERSION=${{ github.sha }}
push : true
tags : |
github/super-linter:latest
2021-05-25 13:03:41 -04:00
github/super-linter:v4
2021-07-19 10:28:49 -04:00
"github/super-linter:${{ env.RELEASE_VERSION }}"
2020-12-04 18:15:51 -05:00
ghcr.io/github/super-linter:latest
2021-05-25 13:03:41 -04:00
ghcr.io/github/super-linter:v4
2021-07-19 10:28:49 -04:00
"ghcr.io/github/super-linter:${{ env.RELEASE_VERSION }}"
2021-06-24 11:19:42 -04:00
cache-from : type=local,src=/tmp/.buildx-cache
cache-to : type=local,dest=/tmp/.buildx-cache-new
# Temp fix
# https://github.com/docker/build-push-action/issues/252
# https://github.com/moby/buildkit/issues/1896
#############
# Fix Cache #
#############
- name : Move cache
run : |
rm -rf /tmp/.buildx-cache
mv /tmp/.buildx-cache-new /tmp/.buildx-cache
2021-02-25 09:57:42 -05:00
#########################
# Update Deployment API #
#########################
- name : Update deployment status
2022-01-03 11:49:00 -05:00
uses : bobheadxi/deployments@v0.6.2
2021-02-25 09:57:42 -05:00
if : always()
with :
step : finish
token : ${{ secrets.GITHUB_TOKEN }}
status : ${{ job.status }}
deployment_id : ${{ steps.deployment.outputs.deployment_id }}
2021-03-10 09:36:46 -05:00
env_url : https://github.com/github/super-linter/releases/tag/${{ env.RELEASE_VERSION }}
2021-07-13 16:20:17 -04:00
#######################################################
# Create a GitHub Issue with the info from this build #
#######################################################
- name : Create GitHub Issue for failure
if : failure()
2021-09-27 10:31:48 -04:00
uses : actions/github-script@v5
2021-07-13 16:20:17 -04:00
id : create-issue
with :
# https://octokit.github.io/rest.js/v18#issues-create
github-token : ${{secrets.GITHUB_TOKEN}}
script : |
2021-11-12 09:53:39 -05:00
const create = await github.rest.issues.create({
2021-07-13 16:20:17 -04:00
owner : context.repo.owner,
repo : context.repo.repo,
title : "Failed to deploy release to production" ,
2021-11-12 12:02:28 -05:00
body : "Automation has failed us! Failed to push release ${{ env.RELEASE_VERSION }}\nMore information can be found at:\n - ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
2021-07-13 16:20:17 -04:00
})
console.log('create', create)
return create.data.number
############################
# Assign admins on failure #
############################
- name : Assign Admins on failure
2021-09-27 10:31:48 -04:00
uses : actions/github-script@v5
2021-07-13 16:20:17 -04:00
if : failure()
with :
# https://octokit.github.io/rest.js/v18#issues-create
github-token : ${{secrets.GITHUB_TOKEN}}
script : |
2021-11-12 09:53:39 -05:00
github.rest.issues.addAssignees({
2021-07-13 16:20:17 -04:00
owner : context.repo.owner,
repo : context.repo.repo,
issue_number : "${{ steps.create-issue.outputs.result }}" ,
assignees : [
'admiralawkbar' ,
'jwiebalk' ,
'IAmHughes' ,
'nemchik' ,
'Hanse00' ,
'GaboFDC' ,
'ferrarimarco'
]
})