From 898a05b32c97060b10ea0b0705bc50d3f56f9a51 Mon Sep 17 00:00:00 2001 From: Maschell Date: Fri, 11 Sep 2020 13:08:14 +0200 Subject: [PATCH] Add github workflow for building non-master and non-pr --- .github/workflows/ci_non_master.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/ci_non_master.yml diff --git a/.github/workflows/ci_non_master.yml b/.github/workflows/ci_non_master.yml new file mode 100644 index 0000000..ecd2722 --- /dev/null +++ b/.github/workflows/ci_non_master.yml @@ -0,0 +1,16 @@ +name: Build binary + +on: + push: + branches-ignore: + - master + +jobs: + build-binary: + runs-on: ubuntu-18.04 + steps: + - uses: actions/checkout@v2 + - name: build binary + run: | + docker build . -t builder + docker run --rm -v ${PWD}:/project builder make \ No newline at end of file