run build on non-master branches
This commit is contained in:
parent
c9bbc0ce5a
commit
95f32585fb
1 changed files with 16 additions and 0 deletions
16
.github/workflows/build.yml
vendored
Normal file
16
.github/workflows/build.yml
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
name: Pull Request
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '*'
|
||||
- '!master'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v1
|
||||
- name: Create a new build
|
||||
run: docker build -t publisher:latest -f ./dockerfiles/Deploy.Dockerfile .
|
Loading…
Reference in a new issue