From 95f32585fbdf16e02aa76c1c5e178331a18c76a7 Mon Sep 17 00:00:00 2001 From: Matteias Collet Date: Sun, 16 Aug 2020 07:36:29 +0200 Subject: [PATCH] run build on non-master branches --- .github/workflows/build.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..6a55086 --- /dev/null +++ b/.github/workflows/build.yml @@ -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 .