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
|
|
|
|
#
|
|
|
|
|
|
|
|
#######################################
|
|
|
|
# Start the job on all push to master #
|
|
|
|
#######################################
|
|
|
|
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-07-13 16:20:17 -04:00
|
|
|
if: github.actor == 'admiralawkbar' || github.actor == 'jwiebalk' ||
|
2021-02-25 09:57:42 -05:00
|
|
|
github.actor == 'IAmHughes' || github.actor == 'nemchik' ||
|
|
|
|
github.actor == 'Hanse00' || github.actor == 'github-actions' ||
|
|
|
|
github.actor == 'GaboFDC' || github.actor == 'ferrarimarco'
|
|
|
|
|
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
|
|
|
|
2021-02-25 09:57:42 -05:00
|
|
|
#########################
|
|
|
|
# Update deployment API #
|
|
|
|
#########################
|
|
|
|
- name: Start deployment
|
2021-06-14 10:34:35 -04:00
|
|
|
uses: bobheadxi/deployments@v0.6.0
|
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
|
|
|
|
run: echo "BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> ${GITHUB_ENV}
|
|
|
|
|
2020-12-04 18:31:42 -05:00
|
|
|
########################
|
|
|
|
# Setup Docker build X #
|
|
|
|
########################
|
|
|
|
- name: Setup BuildX
|
2021-07-12 15:38:23 -04:00
|
|
|
uses: docker/setup-buildx-action@v1.5.1
|
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-06-28 14:52:52 -04:00
|
|
|
uses: docker/login-action@v1.10.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-06-28 14:52:52 -04:00
|
|
|
uses: docker/login-action@v1.10.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-02-25 09:57:42 -05:00
|
|
|
#######################################
|
|
|
|
# Update actions.yml with new version #
|
|
|
|
#######################################
|
|
|
|
- name: Update actions.yml with release version and create PR
|
|
|
|
if: success()
|
|
|
|
run: ./.automation/update-actions-version.sh
|
2021-03-05 12:25:06 -05:00
|
|
|
# Note: script creates variables:
|
|
|
|
# PR_ID PR_REF RELEASE_VERSION COMMIT_SHA
|
2021-02-25 09:57:42 -05:00
|
|
|
env:
|
|
|
|
DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }}
|
2021-07-13 16:20:17 -04:00
|
|
|
RELEASE_NAME: ${{ github.event.release.name }}
|
2021-02-25 09:57:42 -05:00
|
|
|
|
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-07-12 15:38:08 -04:00
|
|
|
uses: docker/build-push-action@v2.6.1
|
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-02-25 09:57:42 -05: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-02-25 09:57:42 -05: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
|
|
|
|
2021-02-26 14:17:45 -05:00
|
|
|
#####################################################
|
|
|
|
# Create the Required status check for Stack Linter #
|
|
|
|
#####################################################
|
|
|
|
- name: Create Stack Linter Status
|
|
|
|
if: success()
|
|
|
|
run: |
|
|
|
|
curl -X POST --url https://api.github.com/repos/${{ github.repository }}/statuses/${{ env.COMMIT_SHA }} \
|
|
|
|
-H "Accept: application/vnd.github.v3+json" \
|
|
|
|
-H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
|
|
|
|
--data '{ "state": "success", "context": "Stack linter" }'
|
|
|
|
|
2021-02-25 09:57:42 -05:00
|
|
|
#################################
|
|
|
|
# Close the opened Pull Request #
|
|
|
|
#################################
|
|
|
|
- name: Close PR
|
|
|
|
if: success()
|
|
|
|
run: |
|
|
|
|
curl -X PUT --url https://api.github.com/repos/${{ github.repository }}/pulls/${{ env.PR_ID }}/merge \
|
|
|
|
-H "Accept: application/vnd.github.v3+json" \
|
|
|
|
-H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
|
|
|
|
--data '{ "merge_method": "squash" }'
|
|
|
|
|
|
|
|
#########################
|
|
|
|
# Update Deployment API #
|
|
|
|
#########################
|
|
|
|
- name: Update deployment status
|
2021-06-14 10:34:35 -04:00
|
|
|
uses: bobheadxi/deployments@v0.6.0
|
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()
|
|
|
|
uses: actions/github-script@v4.0.2
|
|
|
|
id: create-issue
|
|
|
|
with:
|
|
|
|
# https://octokit.github.io/rest.js/v18#issues-create
|
|
|
|
github-token: ${{secrets.GITHUB_TOKEN}}
|
|
|
|
script: |
|
|
|
|
const create = await github.issues.create({
|
|
|
|
owner: context.repo.owner,
|
|
|
|
repo: context.repo.repo,
|
|
|
|
title: "Failed to deploy release to production",
|
|
|
|
body: "Automation has failed us! Failed to push release ${{ env.RELEASE_VERSION }}"
|
|
|
|
})
|
|
|
|
console.log('create', create)
|
|
|
|
return create.data.number
|
|
|
|
|
|
|
|
############################
|
|
|
|
# Assign admins on failure #
|
|
|
|
############################
|
|
|
|
- name: Assign Admins on failure
|
|
|
|
uses: actions/github-script@v4.0.2
|
|
|
|
if: failure()
|
|
|
|
with:
|
|
|
|
# https://octokit.github.io/rest.js/v18#issues-create
|
|
|
|
github-token: ${{secrets.GITHUB_TOKEN}}
|
|
|
|
script: |
|
|
|
|
github.issues.addAssignees({
|
|
|
|
owner: context.repo.owner,
|
|
|
|
repo: context.repo.repo,
|
|
|
|
issue_number: "${{ steps.create-issue.outputs.result }}",
|
|
|
|
assignees: [
|
|
|
|
'admiralawkbar',
|
|
|
|
'jwiebalk',
|
|
|
|
'IAmHughes',
|
|
|
|
'nemchik',
|
|
|
|
'Hanse00',
|
|
|
|
'GaboFDC',
|
|
|
|
'ferrarimarco'
|
|
|
|
]
|
|
|
|
})
|