From c3909f91960f780f17a11b0efec107d15a1a0964 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Tue, 31 Dec 2019 13:44:27 +0100 Subject: [PATCH] actions: run build only on release --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dc908750d..fee7deb1e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -134,6 +134,7 @@ jobs: needs: - migrations - coverage + if: github.event == 'release' runs-on: [ubuntu-latest] steps: - uses: actions/checkout@v1 @@ -150,6 +151,7 @@ jobs: needs: - migrations - coverage + if: github.event == 'release' runs-on: [ubuntu-latest] services: postgres: @@ -179,6 +181,7 @@ jobs: needs: - build-server - build-static + if: github.event == 'release' runs-on: [ubuntu-latest] steps: - uses: actions/checkout@v1