2019-11-08 09:31:16 -05:00
|
|
|
---
|
2021-05-25 15:07:27 -04:00
|
|
|
#################################
|
|
|
|
#################################
|
|
|
|
## Deploy Release Docker Image ##
|
|
|
|
#################################
|
|
|
|
#################################
|
2019-11-08 09:31:16 -05:00
|
|
|
|
|
|
|
#
|
|
|
|
# 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:
|
2021-05-25 15:07:27 -04:00
|
|
|
# Start when a pull request is opened
|
|
|
|
issues:
|
|
|
|
types: ['opened']
|
2019-11-08 09:31:16 -05:00
|
|
|
|
|
|
|
###############
|
|
|
|
# Set the Job #
|
|
|
|
###############
|
|
|
|
jobs:
|
2021-05-25 15:07:27 -04:00
|
|
|
deploy:
|
2019-11-08 09:31:16 -05:00
|
|
|
# Name the Job
|
2021-05-25 15:07:27 -04:00
|
|
|
name: Deploy Docker Image - Release - slim
|
2019-11-08 09:31:16 -05:00
|
|
|
# Set the agent to run on
|
|
|
|
runs-on: ubuntu-latest
|
2021-05-25 15:07:27 -04:00
|
|
|
|
|
|
|
#####################################################################
|
|
|
|
# Only run if Admin start job and it was the Release Issue template #
|
|
|
|
#####################################################################
|
|
|
|
if: contains(github.event.issue.title, 'Super-Linter Release:') &&
|
|
|
|
github.actor == 'admiralawkbar' || github.actor == 'jwiebalk' ||
|
|
|
|
github.actor == 'IAmHughes' || github.actor == 'nemchik' ||
|
|
|
|
github.actor == 'Hanse00' || github.actor == 'github-actions' ||
|
|
|
|
github.actor == 'GaboFDC' || github.actor == 'ferrarimarco'
|
|
|
|
|
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
|
2020-11-04 00:43:17 -05:00
|
|
|
uses: actions/checkout@v2.3.4
|
2019-11-08 09:45:57 -05:00
|
|
|
|
2021-05-25 15:07:27 -04:00
|
|
|
#######################################################
|
|
|
|
# Create a GitHub Issue with the info from this build #
|
|
|
|
#######################################################
|
|
|
|
- name: Update GitHub Issue
|
|
|
|
uses: actions/github-script@v4.0.2
|
|
|
|
id: update-issue
|
|
|
|
with:
|
|
|
|
# https://octokit.github.io/rest.js/v18#issues-create
|
|
|
|
github-token: ${{secrets.GITHUB_TOKEN}}
|
|
|
|
script: |
|
|
|
|
github.issues.createComment({
|
|
|
|
owner: context.repo.owner,
|
|
|
|
repo: context.repo.repo,
|
|
|
|
issue_number: "${{ github.event.issue.number }}",
|
|
|
|
title: "Deploying slim Super-Linter Release to Production",
|
|
|
|
body: 'Currently deploying the Release...'
|
|
|
|
})
|
|
|
|
|
|
|
|
#########################
|
|
|
|
# Update deployment API #
|
|
|
|
#########################
|
|
|
|
- name: Start deployment
|
|
|
|
uses: bobheadxi/deployments@v0.5.2
|
|
|
|
id: deployment
|
|
|
|
with:
|
|
|
|
step: start
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
env: Release-SLIM
|
|
|
|
|
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:32:48 -05:00
|
|
|
########################
|
|
|
|
# Setup Docker build X #
|
|
|
|
########################
|
|
|
|
- name: Setup BuildX
|
2021-05-11 15:07:22 -04:00
|
|
|
uses: docker/setup-buildx-action@v1.3.0
|
2020-12-04 18:32:48 -05:00
|
|
|
|
2020-12-04 18:15:51 -05:00
|
|
|
###############################
|
|
|
|
# Login to DockerHub registry #
|
|
|
|
###############################
|
|
|
|
- name: Login to DockerHub
|
2021-05-11 15:07:42 -04:00
|
|
|
uses: docker/login-action@v1.9.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
|
|
|
|
2020-12-04 18:15:51 -05:00
|
|
|
######################################
|
|
|
|
# Login to GitHub Container registry #
|
|
|
|
######################################
|
|
|
|
- name: Login to GitHub Container Registry
|
2021-05-11 15:07:42 -04:00
|
|
|
uses: docker/login-action@v1.9.0
|
2020-12-04 13:49:09 -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 }}
|
2021-05-25 15:07:27 -04:00
|
|
|
registry: ghcr.io
|
2021-05-25 13:03:41 -04:00
|
|
|
|
2021-05-25 11:14:43 -04:00
|
|
|
###########################################
|
|
|
|
# Build and Push containers to registries #
|
|
|
|
###########################################
|
|
|
|
- name: Build and push - SLIM
|
|
|
|
uses: docker/build-push-action@v2.4.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
|
2021-05-25 15:07:27 -04:00
|
|
|
github/super-linter:slim-v4
|
|
|
|
github/super-linter:slim-${{ env.RELEASE_VERSION }}
|
2021-05-25 11:14:43 -04:00
|
|
|
ghcr.io/github/super-linter:slim-latest
|
2021-05-25 15:07:27 -04:00
|
|
|
ghcr.io/github/super-linter:slim-v4
|
|
|
|
ghcr.io/github/super-linter:slim-${{ env.RELEASE_VERSION }}
|
2021-03-10 09:36:46 -05:00
|
|
|
|
|
|
|
#########################
|
|
|
|
# Update Deployment API #
|
|
|
|
#########################
|
|
|
|
- name: Update deployment status
|
2021-03-15 11:05:24 -04:00
|
|
|
uses: bobheadxi/deployments@v0.5.2
|
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 }}
|
2021-05-25 15:07:27 -04:00
|
|
|
env_url: https://github.com/github/super-linter/releases/tag/${{ env.RELEASE_VERSION }}
|