superlint/.github/workflows/deploy-Release.yml

192 lines
6.6 KiB
YAML
Raw Normal View History

2019-11-08 09:31:16 -05:00
---
2021-05-25 15:07:27 -04: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
#
###########################################
# Start the job upon publishing a release #
###########################################
2019-11-08 09:39:18 -05:00
on:
# Start when a release is published
release:
types: ['published']
2019-11-08 09:31:16 -05:00
###############
# Set the Job #
###############
jobs:
build:
2019-11-08 09:31:16 -05:00
# Name the Job
name: Deploy Docker Image - Release
2019-11-08 09:31:16 -05:00
# Set the agent to run on
runs-on: ubuntu-latest
strategy:
fail-fast: false
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
###############
# Steps below #
###############
2019-11-08 09:31:16 -05:00
steps:
############################
# Checkout the source code #
############################
2019-11-08 09:45:57 -05:00
- name: Checkout Code
uses: actions/checkout@v2.4.0
2021-05-25 15:07:27 -04:00
with:
# Full git history is needed to get a proper list
# of changed files within `super-linter`
fetch-depth: 0
2021-05-25 15:07:27 -04:00
###########################
# Set current date to ENV #
###########################
- name: Get current date
run: |
echo "Appending the build date contents to GITHUB_ENV..."
echo "BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> "${GITHUB_ENV}"
#######################
# Setup Docker BuildX #
#######################
2020-12-04 18:32:48 -05:00
- name: Setup BuildX
uses: docker/setup-buildx-action@v1.6.0
2020-12-04 18:32:48 -05:00
######################
# Login to DockerHub #
######################
- name: Login to DockerHub
uses: docker/login-action@v1.10.0
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
2020-08-20 13:58:11 -04:00
####################
# Login to GHCR.io #
####################
- name: Login to GitHub Container Registry
uses: docker/login-action@v1.10.0
with:
registry: ghcr.io
username: ${{ secrets.GCR_USERNAME }}
password: ${{ secrets.GCR_TOKEN }}
###########################
# 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}"
#########################
# Update deployment API #
#########################
- name: Start deployment
uses: bobheadxi/deployments@v0.6.1
id: deployment
with:
step: start
token: ${{ secrets.GITHUB_TOKEN }}
env: ${{ matrix.images.deployment-environment-identifier }}
######################################
# Build the docker image and push it #
######################################
- name: Build Docker image - ${{ matrix.images.image-id }}
uses: docker/build-push-action@v2.8.0
with:
context: .
file: ./Dockerfile
build-args: |
BUILD_DATE=${{ env.BUILD_DATE }}
BUILD_REVISION=${{ github.sha }}
BUILD_VERSION=${{ github.sha }}
load: false
push: true
tags: |
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 }}"
#########################
# Update Deployment API #
#########################
- name: Update deployment status
uses: bobheadxi/deployments@v0.6.2
if: always()
with:
step: finish
token: ${{ secrets.GITHUB_TOKEN }}
status: ${{ job.status }}
deployment_id: ${{ steps.deployment.outputs.deployment_id }}
2021-05-25 15:07:27 -04:00
env_url: https://github.com/github/super-linter/releases/tag/${{ env.RELEASE_VERSION }}
#######################################################
# Create a GitHub Issue with the info from this build #
#######################################################
- name: Create GitHub Issue for failure
if: failure()
uses: actions/github-script@v6
id: create-issue
with:
# https://octokit.github.io/rest.js/v18#issues-create
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
const create = await github.rest.issues.create({
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 }}"
})
console.log('create', create)
return create.data.number
############################
# Assign admins on failure #
############################
- name: Assign Admins on failure
uses: actions/github-script@v6
if: failure()
with:
# https://octokit.github.io/rest.js/v18#issues-create
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
github.rest.issues.addAssignees({
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',
'IAmHughes',
'nemchik',
'Hanse00',
'GaboFDC',
'ferrarimarco'
]
})