mirror of
https://github.com/super-linter/super-linter.git
synced 2024-12-25 08:42:13 -05:00
69 lines
2.1 KiB
YAML
69 lines
2.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 - PROD
|
|
# Set the agent to run on
|
|
runs-on: ubuntu-latest
|
|
# Only run this on the main repo
|
|
if: github.repository == 'github/super-linter'
|
|
##################
|
|
# Load all steps #
|
|
##################
|
|
steps:
|
|
##########################
|
|
# Checkout the code base #
|
|
##########################
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v2.3.4
|
|
|
|
#####################
|
|
# Run Deploy script #
|
|
#####################
|
|
- name: Deploy latest image to DockerHub
|
|
uses: whoan/docker-build-with-cache-action@v5
|
|
with:
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
image_name: github/super-linter
|
|
image_tag: "latest,v3"
|
|
dockerfile: Dockerfile
|
|
build_extra_args: "--build-arg=BUILD_DATE=${BUILD_DATE} --build-arg=BUILD_REVISION=${GITHUB_SHA} --build-arg=BUILD_VERSION=${GITHUB_SHA}"
|
|
push_image_and_stages: true
|
|
|
|
#############################
|
|
# Run Deploy script for GPR #
|
|
#############################
|
|
- name: Deploy Latest image to GitHub Container Registry
|
|
uses: whoan/docker-build-with-cache-action@v5
|
|
with:
|
|
username: ${{ secrets.GCR_USERNAME }}
|
|
password: ${{ secrets.GCR_TOKEN }}
|
|
registry: ghcr.io
|
|
image_name: github/super-linter
|
|
image_tag: "latest,v3"
|
|
dockerfile: Dockerfile
|
|
build_extra_args: "--build-arg=BUILD_DATE=${BUILD_DATE} --build-arg=BUILD_REVISION=${GITHUB_SHA} --build-arg=BUILD_VERSION=${GITHUB_SHA}"
|
|
push_image_and_stages: true
|