From 48c9f6210fb4f070c9cc2624303770d7e7d90b1c Mon Sep 17 00:00:00 2001 From: Thomas Dondorf Date: Sun, 23 Jan 2022 15:13:48 +0100 Subject: [PATCH] Fix release actions --- .github/workflows/actions.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 0cb1a134..30525082 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -11,6 +11,8 @@ on: push: branches: - master + release: + types: [created] jobs: test: @@ -64,7 +66,7 @@ jobs: parallel-finished: true publish: - if: github.event_name == 'push' && contains(github.ref, 'refs/tags/v') + if: github.event_name == 'release' && github.event.action == 'created' needs: report-coverage runs-on: ubuntu-latest steps: