2019-11-08 09:31:16 -05:00
---
2021-05-25 15:07:27 -04:00
#################################
#################################
2022-01-26 10:17:59 -05:00
## Deploy Docker Image Release ##
2021-05-25 15:07:27 -04:00
#################################
#################################
2019-11-08 09:31:16 -05:00
#
# Documentation:
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
#
2022-02-21 10:17:34 -05:00
name : Deploy Release
2021-10-01 15:57:26 -04:00
###########################################
# Start the job upon publishing a release #
###########################################
2019-11-08 09:39:18 -05:00
on :
2021-07-13 16:20:17 -04:00
# Start when a release is published
release :
2022-03-25 11:20:52 -04:00
types : [ published]
workflow_dispatch :
# Set the input variables you want to pull in
inputs :
release_version :
description: 'version to release. Ex : v4.3.2'
required : true
default : 'v'
2019-11-08 09:31:16 -05:00
###############
# Set the Job #
###############
jobs :
2022-01-26 10:17:59 -05:00
build :
2019-11-08 09:31:16 -05:00
# Name the Job
2022-01-26 10:17:59 -05:00
name : Deploy Docker Image - Release
2019-11-08 09:31:16 -05:00
# Set the agent to run on
runs-on : ubuntu-latest
2022-01-26 10:17:59 -05:00
strategy :
2022-02-07 11:28:48 -05:00
fail-fast : false
2022-01-26 10:17:59 -05:00
matrix :
images :
- container-build-target : final_slim
container-image-id-prefix : slim-
deployment-environment-identifier : Release-SLIM
image-id : slim
- container-build-target : final_standard
container-image-id-prefix : ""
deployment-environment-identifier : Release
image-id : standard
2021-11-15 11:25:36 -05:00
timeout-minutes : 60
2022-01-26 10:17:59 -05:00
###############
# Steps below #
###############
2019-11-08 09:31:16 -05:00
steps :
2022-01-26 10:17:59 -05:00
############################
# Checkout the source code #
############################
2019-11-08 09:45:57 -05:00
- name : Checkout Code
2022-03-07 10:34:26 -05:00
uses : actions/checkout@v3
2021-05-25 15:07:27 -04:00
2022-01-26 10:17:59 -05:00
###########################
# Set current date to ENV #
###########################
2020-12-04 13:49:09 -05:00
- 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
2022-01-26 10:17:59 -05:00
#######################
# Setup Docker BuildX #
#######################
2020-12-04 18:32:48 -05:00
- name : Setup BuildX
2022-05-09 10:46:10 -04:00
uses : docker/setup-buildx-action@v2.0.0
2020-12-04 18:32:48 -05:00
2022-01-26 10:17:59 -05:00
######################
# Login to DockerHub #
######################
2020-12-04 18:15:51 -05:00
- name : Login to DockerHub
2022-05-09 10:45:50 -04:00
uses : docker/login-action@v2.0.0
2020-12-04 13:49:09 -05:00
with :
username : ${{ secrets.DOCKER_USERNAME }}
password : ${{ secrets.DOCKER_PASSWORD }}
2020-08-20 13:58:11 -04:00
2022-01-26 10:17:59 -05:00
####################
# Login to GHCR.io #
####################
2020-12-04 18:15:51 -05:00
- name : Login to GitHub Container Registry
2022-05-09 10:45:50 -04:00
uses : docker/login-action@v2.0.0
2020-12-04 13:49:09 -05:00
with :
2022-01-26 10:17:59 -05:00
registry : ghcr.io
2020-12-04 18:21:08 -05:00
username : ${{ secrets.GCR_USERNAME }}
2020-12-04 18:15:51 -05:00
password : ${{ secrets.GCR_TOKEN }}
2021-05-25 13:03:41 -04:00
2021-06-03 10:45:15 -04:00
###########################
# Get the current release #
###########################
- name : Get current Release number
2021-07-19 10:28:49 -04:00
# shellcheck disable=SC2062
2021-06-03 10:45:15 -04:00
run : |
2021-07-19 10:28:49 -04:00
echo "RELEASE_VERSION=$(echo ${{ github.event.release.name }} \
2021-06-03 10:45:15 -04:00
| grep -E -o "v[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+")" \
2021-07-19 10:28:49 -04:00
>> "${GITHUB_ENV}"
2022-03-25 11:20:52 -04:00
if [ -z "${RELEASE_VERSION}" ]; then
echo "No release version found in environment, using input..."
echo "RELEASE_VERSION=${{ github.event.inputs.release_version }}" \
>> "${GITHUB_ENV}"
fi
2021-06-03 10:45:15 -04:00
2022-01-26 10:17:59 -05:00
#########################
# Update deployment API #
#########################
- name : Start deployment
2022-07-11 13:13:52 -04:00
uses : bobheadxi/deployments@v1.3.0
2022-01-26 10:17:59 -05:00
id : deployment
2021-06-24 11:19:42 -04:00
with :
2022-01-26 10:17:59 -05:00
step : start
token : ${{ secrets.GITHUB_TOKEN }}
env : ${{ matrix.images.deployment-environment-identifier }}
2021-06-24 11:19:42 -04:00
2022-01-26 10:17:59 -05:00
######################################
# Build the docker image and push it #
######################################
- name : Build Docker image - ${{ matrix.images.image-id }}
2022-07-25 10:20:01 -04:00
uses : docker/build-push-action@v3.1.0
2021-05-25 11:14:43 -04:00
with :
context : .
2021-12-10 11:15:12 -05:00
file : ./Dockerfile
2021-05-25 11:14:43 -04:00
build-args : |
BUILD_DATE=${{ env.BUILD_DATE }}
BUILD_REVISION=${{ github.sha }}
BUILD_VERSION=${{ github.sha }}
2022-01-26 13:00:55 -05:00
load : false
2021-05-25 11:14:43 -04:00
push : true
tags : |
2022-01-26 10:17:59 -05:00
github/super-linter:${{ matrix.images.container-image-id-prefix }}latest
github/super-linter:${{ matrix.images.container-image-id-prefix }}v4
github/super-linter:${{ matrix.images.container-image-id-prefix }}${{ env.RELEASE_VERSION }}
ghcr.io/github/super-linter:${{ matrix.images.container-image-id-prefix }}latest
ghcr.io/github/super-linter:${{ matrix.images.container-image-id-prefix }}v4
ghcr.io/github/super-linter:${{ matrix.images.container-image-id-prefix }}${{ env.RELEASE_VERSION }}
target : "${{ matrix.images.container-build-target }}"
2021-03-10 09:36:46 -05:00
#########################
# Update Deployment API #
#########################
- name : Update deployment status
2022-07-11 13:13:52 -04:00
uses : bobheadxi/deployments@v1.3.0
2021-03-10 09:36:46 -05:00
if : always()
with :
step : finish
token : ${{ secrets.GITHUB_TOKEN }}
status : ${{ job.status }}
deployment_id : ${{ steps.deployment.outputs.deployment_id }}
2022-03-15 04:54:31 -04:00
env : ${{ steps.deployment.outputs.env }}
2021-05-25 15:07:27 -04: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()
2022-02-14 16:20:29 -05:00
uses : actions/github-script@v6
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
2022-02-14 16:20:29 -05:00
uses : actions/github-script@v6
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' ,
2022-01-06 12:00:13 -05:00
'lindluni' ,
2021-07-13 16:20:17 -04:00
'IAmHughes' ,
'nemchik' ,
'Hanse00' ,
'GaboFDC' ,
'ferrarimarco'
]
})