superlint/.github/workflows/deploy-DEV.yml
Lucas Gravley fd3c1eed13 fix arrays
2020-02-04 12:20:22 -06:00

62 lines
1.6 KiB
YAML

---
#########################
#########################
## Deploy Docker Image ##
#########################
#########################
#
# Documentation:
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
#
#######################################
# Start the job on all push to master #
#######################################
#############################
# Start the job on all push #
#############################
on:
push:
branches-ignore:
- 'master'
###############
# Set the Job #
###############
jobs:
build:
# Name the Job
name: Deploy Docker Image - DEV
# Set the agent to run on
runs-on: ubuntu-latest
##################
# Load all steps #
##################
steps:
##########################
# Checkout the code base #
##########################
- name: Checkout Code
uses: actions/checkout@master
#####################
# Run Deploy script #
#####################
- name: Deploy image to DockerHub
env:
# Set the Env Vars
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
IMAGE_REPO: admiralawkbar/super-linter
DOCKERFILE_PATH: Dockerfile
shell: bash
run: .automation/upload-docker.sh
################################
# Run Linter against code base #
################################
- name: Run Test Cases
uses: docker://admiralawkbar/super-linter:${{ github.ref }}
env:
TEST_CASE_RUN: true