Create docker-build.yml

This commit is contained in:
nezu 2021-12-26 02:38:01 +01:00 committed by GitHub
parent 6d99a1d564
commit 353f48b4a1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

16
.github/workflows/docker-build.yml vendored Normal file
View file

@ -0,0 +1,16 @@
name: Docker build
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Build image
uses: docker/build-push-action@v2