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

183 lines
5.5 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 master #
#######################################
2019-11-08 09:39:18 -05:00
on:
push:
branches:
- 'master'
- '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 - slim
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'
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.3.4
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.3.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.0
id: deployment
with:
step: start
token: ${{ secrets.GITHUB_TOKEN }}
2021-05-25 15:07:27 -04:00
env: Production-SLIM
################
# Docker cache #
################
- name: Cache Docker layers
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-single-buildx-slim
restore-keys: |
${{ runner.os }}-single-buildx
###########################################
# Build and Push containers to registries #
###########################################
- name: Build and push - SLIM
uses: docker/build-push-action@v2.5.0
with:
context: .
file: ./Dockerfile-slim
build-args: |
BUILD_DATE=${{ env.BUILD_DATE }}
BUILD_REVISION=${{ github.sha }}
BUILD_VERSION=${{ github.sha }}
push: true
tags: |
github/super-linter:slim-latest
ghcr.io/github/super-linter:slim-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@v4.0.2
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: |
2021-03-10 10:15:42 -05:00
const create = await github.issues.create({
owner: context.repo.owner,
repo: context.repo.repo,
2021-03-10 10:15:42 -05:00
title: "Failed to deploy to production",
body: 'Automation has failed us!'
})
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@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'
]
})
#########################
# Update Deployment API #
#########################
- name: Update deployment status
uses: bobheadxi/deployments@v0.6.0
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