From c326d2571e383e4fcc76eff6a5316da3177ca63c Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Mon, 27 Apr 2026 22:25:48 -0400 Subject: [PATCH] fix(ci): run on tags, publish on both master push and tags --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6b59c53..0a5a4c6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,6 +3,7 @@ name: CI on: push: branches: [master] + tags: ['v*'] pull_request: branches: [master] @@ -28,7 +29,7 @@ jobs: publish: needs: test runs-on: ubuntu-latest - if: github.ref == 'refs/heads/master' && github.event_name == 'push' + if: (github.ref == 'refs/heads/master' && github.event_name == 'push') || startsWith(github.ref, 'refs/tags/') permissions: id-token: write steps: