Created
September 4, 2021 20:47
-
-
Save lenardchristopher/1692c82010e4233198d557fd5ba25647 to your computer and use it in GitHub Desktop.
Github Action Docker Build
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Docker Build" | |
on: | |
pull_request: | |
branches: | |
- "main" | |
jobs: | |
docker-build: | |
name: Docker Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- 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