You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(release): remove version bump automation to avoid branch protection conflicts
The release workflow was trying to auto-update version numbers in files
and push to main, which conflicts with branch protection rules requiring
PRs. This caused releases to fail.
Changes:
- Removed version extraction, checkout, update, and commit steps from workflow
- Changed GNUmakefile VERSION to 'dev' (only used for local sideloading)
- Changed README example to use '~> 1.0' (generic example version)
- Updated release docs to reflect simplified process
GoReleaser automatically uses the git tag version, so tracking versions
in files is unnecessary. The workflow now simply builds and publishes
from the tag without needing to push to main.
0 commit comments