superlint/.github/workflows/deploy.yml
Workflow config file is invalid. Please check your config file: yaml: line 33: did not find expected key
2019-11-08 08:40:52 -06:00

44 lines
1 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 #
#######################################
on:
push:
branches:
- 'master'
###############
# Set the Job #
###############
jobs:
build:
# Name the Job
name: Deploy Docker Image
# Set the agent to run on
runs-on: ubuntu-latest
##################
# Load all steps #
##################
steps:
env:
# Set the Env Vars
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
IMAGE_REPO: admiralawkbar/super-linter
IMAGE_VERSION: latest
DOCKERFILE_PATH: Dockerfile
# Run Deploy script
- name: Deploy image to DockerHub
shell: bash
run: .automation/upload-docker.sh