2020-06-23 10:56:16 -04:00
|
|
|
---
|
|
|
|
#########################
|
|
|
|
#########################
|
|
|
|
## Deploy Docker Image ##
|
|
|
|
#########################
|
|
|
|
#########################
|
|
|
|
|
|
|
|
#
|
|
|
|
# Documentation:
|
|
|
|
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
|
|
|
|
#
|
|
|
|
|
|
|
|
#######################################
|
|
|
|
# Start the job on all push to master #
|
|
|
|
#######################################
|
|
|
|
on:
|
|
|
|
release:
|
|
|
|
# Want to run the automation when a release is created
|
|
|
|
types: ['created']
|
|
|
|
|
|
|
|
###############
|
|
|
|
# Set the Job #
|
|
|
|
###############
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
# Name the Job
|
|
|
|
name: Deploy Docker Image - Release
|
|
|
|
# Set the agent to run on
|
|
|
|
runs-on: ubuntu-latest
|
2020-08-11 09:09:57 -04:00
|
|
|
# Only run on main repo
|
|
|
|
if: github.repository == 'github/super-linter'
|
2020-06-23 10:56:16 -04:00
|
|
|
##################
|
|
|
|
# Load all steps #
|
|
|
|
##################
|
|
|
|
steps:
|
|
|
|
##########################
|
|
|
|
# Checkout the code base #
|
|
|
|
##########################
|
|
|
|
- name: Checkout Code
|
2020-08-10 01:38:32 -04:00
|
|
|
uses: actions/checkout@v2.3.2
|
2020-06-23 10:56:16 -04:00
|
|
|
|
|
|
|
###################################
|
|
|
|
# Run Deploy script for Dockerhub #
|
|
|
|
###################################
|
|
|
|
- name: Deploy Release image to Dockerhub
|
|
|
|
env:
|
|
|
|
# Set the Env Vars
|
|
|
|
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
IMAGE_REPO: github/super-linter
|
2020-06-23 15:43:59 -04:00
|
|
|
IMAGE_VERSION: ${{ github.event.release.tag_name }}
|
2020-06-23 10:56:16 -04:00
|
|
|
DOCKERFILE_PATH: Dockerfile
|
2020-06-23 13:08:33 -04:00
|
|
|
REGISTRY: Docker
|
2020-06-23 10:56:16 -04:00
|
|
|
shell: bash
|
|
|
|
run: .automation/upload-docker.sh
|
|
|
|
|
|
|
|
#############################
|
|
|
|
# Run Deploy script for GPR #
|
|
|
|
#############################
|
2020-08-20 13:58:11 -04:00
|
|
|
- name: Deploy Release image to GitHub Container Registry
|
2020-06-23 10:56:16 -04:00
|
|
|
env:
|
|
|
|
# Set the Env Vars
|
2020-06-23 15:57:30 -04:00
|
|
|
GPR_USERNAME: ${{ secrets.GPR_USERNAME }}
|
|
|
|
GPR_TOKEN: ${{ secrets.GPR_TOKEN }}
|
2020-06-23 10:56:16 -04:00
|
|
|
IMAGE_REPO: github/super-linter
|
2020-06-23 15:43:59 -04:00
|
|
|
IMAGE_VERSION: ${{ github.event.release.tag_name }}
|
2020-06-23 10:56:16 -04:00
|
|
|
DOCKERFILE_PATH: Dockerfile
|
2020-06-23 13:08:33 -04:00
|
|
|
REGISTRY: GPR
|
2020-06-23 10:56:16 -04:00
|
|
|
shell: bash
|
|
|
|
run: .automation/upload-docker.sh
|