Skip to content

Instantly share code, notes, and snippets.

@lenardchristopher
Created September 4, 2021 20:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lenardchristopher/1692c82010e4233198d557fd5ba25647 to your computer and use it in GitHub Desktop.
Save lenardchristopher/1692c82010e4233198d557fd5ba25647 to your computer and use it in GitHub Desktop.
Github Action Docker Build
name: "Docker Build"
on:
pull_request:
branches:
- "main"
jobs:
docker-build:
name: Docker Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2.3.4
- name: Docker Build
run: make docker-build
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment