mirror of
https://github.com/super-linter/super-linter.git
synced 2025-01-11 00:41:27 -05:00
Adding deploy
This commit is contained in:
parent
f7ae986830
commit
db4662123e
1 changed files with 66 additions and 0 deletions
66
.github/workflows/deploy-RELEASE.yml
vendored
Normal file
66
.github/workflows/deploy-RELEASE.yml
vendored
Normal file
|
@ -0,0 +1,66 @@
|
||||||
|
---
|
||||||
|
#########################
|
||||||
|
#########################
|
||||||
|
## 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
|
||||||
|
##################
|
||||||
|
# Load all steps #
|
||||||
|
##################
|
||||||
|
steps:
|
||||||
|
##########################
|
||||||
|
# Checkout the code base #
|
||||||
|
##########################
|
||||||
|
- name: Checkout Code
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
###################################
|
||||||
|
# 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
|
||||||
|
IMAGE_VERSION: ${{ github.ref }}
|
||||||
|
DOCKERFILE_PATH: Dockerfile
|
||||||
|
shell: bash
|
||||||
|
run: .automation/upload-docker.sh
|
||||||
|
|
||||||
|
#############################
|
||||||
|
# Run Deploy script for GPR #
|
||||||
|
#############################
|
||||||
|
- name: Deploy Release image to GitHub Package Registry
|
||||||
|
env:
|
||||||
|
# Set the Env Vars
|
||||||
|
DOCKER_USERNAME: ${{ secrets.GPR_USERNAME }}
|
||||||
|
DOCKER_PASSWORD: ${{ secrets.GPR_PASSWORD }}
|
||||||
|
IMAGE_REPO: github/super-linter
|
||||||
|
IMAGE_VERSION: ${{ github.ref }}
|
||||||
|
DOCKERFILE_PATH: Dockerfile
|
||||||
|
shell: bash
|
||||||
|
run: .automation/upload-docker.sh
|
Loading…
Reference in a new issue