From ec0e51963129a4648740a69395fa5f916979bc3f Mon Sep 17 00:00:00 2001 From: Bekir Oguz Date: Mon, 23 Sep 2024 10:45:40 +0200 Subject: [PATCH] Refactor ci.yml to include push events in the release pipeline --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f1f1b63fe..9982e00ca 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,7 +41,7 @@ jobs: name: Publish release # needs: [ci] # run on 1) tags starting with v, 2) manual trigger, 3) pushes/merges to master - if: startsWith(github.ref, 'refs/tags/v') || github.event_name == 'workflow_dispatch' || github.ref == 'refs/heads/master' + if: startsWith(github.ref, 'refs/tags/v') || github.event_name == 'workflow_dispatch' || github.event_name == 'push' runs-on: ubuntu-latest steps: - name: Checkout