Skip to content

Commit 3e678f2

Browse files
committed
Refactor release process in Makefile to simplify version bumping; updated instructions to manually commit, tag, and push changes for CI release.
1 parent da2d5b4 commit 3e678f2

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

Makefile

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,5 @@ bump:
3333
# Release: bump version, commit, tag, push (CI builds artifacts on tag)
3434
release: bump
3535
@ver=$$(cat .version.tmp); \
36-
git add transformers/version.go; \
37-
git commit -m "cicd: bump version to v$$ver" || true; \
38-
git tag "v$$ver"; \
39-
git push origin HEAD:main; \
40-
git push origin "v$$ver"; \
41-
echo "Release v$$ver tagged and pushed. CI will build artifacts."; \
36+
echo "Version bumped to $$ver. Please commit, tag (v$$ver), and push to trigger CI release."; \
4237
rm -f .version.tmp

0 commit comments

Comments
 (0)