lint/.github/workflows/deploy-PROD.yml

54 lines
1.3 KiB
YAML
Raw Normal View History

2019-11-08 08:31:16 -06: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 08:39:18 -06:00
on:
push:
branches:
- 'master'
2019-11-08 08:31:16 -06:00
###############
# Set the Job #
###############
jobs:
build:
# Name the Job
2020-01-09 13:04:41 -06:00
name: Deploy Docker Image - PROD
2019-11-08 08:31:16 -06:00
# Set the agent to run on
runs-on: ubuntu-latest
##################
# Load all steps #
##################
steps:
2019-11-08 08:45:57 -06:00
##########################
# Checkout the code base #
##########################
- name: Checkout Code
2020-06-18 10:35:16 -07:00
uses: actions/checkout@v2
2019-11-08 08:45:57 -06:00
#####################
# Run Deploy script #
#####################
2020-06-23 12:08:33 -05:00
- name: Deploy latest image to DockerHub
2019-11-08 08:42:17 -06:00
env:
# Set the Env Vars
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
2020-06-18 13:53:45 -05:00
IMAGE_REPO: github/super-linter
2019-11-08 08:42:17 -06:00
IMAGE_VERSION: latest
DOCKERFILE_PATH: Dockerfile
2020-06-23 12:08:33 -05:00
REGISTRY: Docker
2019-11-08 08:31:16 -06:00
shell: bash
run: .automation/upload-docker.sh