Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix CI release git tag push trigger (#869)
Apparently GH action's push event filters accept glob patterns and *not* regexes 🤦 Source: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#onpushbranchestagsbranches-ignoretags-ignore That means that the existing tag filter string being a regex wasn't working properly and as such wasn't triggering the expected builds on tag push. To address this, the `on.push.tags` were updated to have separate entries for normal vs `rc` tags, and also tweaked the tag-only jobs' filters to rely on `github.ref_type` instead of inspecting `github.ref`.
- Loading branch information