Avoid hardcoding the branch name (master) in publish.yml to allow publishing a pre-release of release/v11
Previously, I hardcoded the branch name master to fix a CI failure and left a TODO in the publish.yml since we didn't need to publish a release from a branch other than master and it's also not a priority and I wanted to focus on other issues.
This allows maintainers to publish a release from any branch.
Type of Change
[ ] โจ New feature: Adds new functionality without breaking existing features.
[ ] ๐ ๏ธ Bug fix: Resolves an issue without altering current behavior.
[ ] ๐งน Code refactor: Code restructuring that does not affect behavior.
Description
Avoid hardcoding the branch name (
master
) inpublish.yml
to allow publishing a pre-release of release/v11Previously, I hardcoded the branch name
master
to fix a CI failure and left a TODO in thepublish.yml
since we didn't need to publish a release from a branch other thanmaster
and it's also not a priority and I wanted to focus on other issues.This allows maintainers to publish a release from any branch.
Type of Change