superlint/.github/workflows/deploy-PROD-standard.yml

183 lines
5.7 KiB
YAML
Raw Normal View History

2019-11-08 09:31:16 -05:00
---
#########################
#########################
## Deploy Docker Image ##
#########################
#########################
#
# Documentation:
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
#
#####################################
# Start the job on all push to main #
#####################################
2019-11-08 09:39:18 -05:00
on:
push:
branches:
- 'main'
2019-11-08 09:31:16 -05:00
###############
# Set the Job #
###############
jobs:
build:
# Name the Job
2021-05-25 15:07:27 -04:00
name: Deploy Docker Image - PROD - standard
2019-11-08 09:31:16 -05:00
# Set the agent to run on
runs-on: ubuntu-latest
2020-08-10 19:04:35 -04:00
# Only run this on the main repo
if: ${{ github.repository == 'github/super-linter' }}
2021-11-15 11:25:36 -05:00
timeout-minutes: 60
2019-11-08 09:31:16 -05:00
##################
# Load all steps #
##################
steps:
2019-11-08 09:45:57 -05:00
##########################
# Checkout the code base #
##########################
- name: Checkout Code
uses: actions/checkout@v2.4.0
2019-11-08 09:45:57 -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:32:48 -05:00
########################
# Setup Docker build X #
########################
- name: Setup BuildX
uses: docker/setup-buildx-action@v1.6.0
2020-12-04 18:32:48 -05:00
###############################
# Login to DockerHub registry #
###############################
- 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 GitHub Container registry #
######################################
- 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 }}
#########################
# Update deployment API #
#########################
- name: Start deployment
uses: bobheadxi/deployments@v0.6.1
id: deployment
with:
step: start
token: ${{ secrets.GITHUB_TOKEN }}
env: Production
################
# 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
###########################################
# Build and Push containers to registries #
###########################################
- name: Build and push - Standard
uses: docker/build-push-action@v2.7.0
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
ghcr.io/github/super-linter:latest
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-03-10 10:15:42 -05:00
#######################################################
# Create a GitHub Issue with the info from this build #
#######################################################
- name: Create GitHub Issue for failure
if: failure()
uses: actions/github-script@v5
2021-03-10 10:15:42 -05:00
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,
2021-03-10 10:15:42 -05:00
title: "Failed to deploy to production",
2021-11-12 12:02:28 -05:00
body: "Automation has failed us!\nMore information can be found at:\n - ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
})
2021-03-10 10:15:42 -05:00
console.log('create', create)
return create.data.number
############################
# Assign admins on failure #
############################
- name: Assign Admins on failure
uses: actions/github-script@v5
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',
'jwiebalk',
'IAmHughes',
'nemchik',
'Hanse00',
'GaboFDC',
'ferrarimarco'
]
})
#########################
# Update Deployment API #
#########################
- name: Update deployment status
uses: bobheadxi/deployments@v0.6.1
if: always()
with:
step: finish
token: ${{ secrets.GITHUB_TOKEN }}
status: ${{ job.status }}
deployment_id: ${{ steps.deployment.outputs.deployment_id }}
env_url: https://github.com/github/super-linter