We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da2d5b4 commit 3e678f2Copy full SHA for 3e678f2
Makefile
@@ -33,10 +33,5 @@ bump:
33
# Release: bump version, commit, tag, push (CI builds artifacts on tag)
34
release: bump
35
@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."; \
+ echo "Version bumped to $$ver. Please commit, tag (v$$ver), and push to trigger CI release."; \
42
rm -f .version.tmp
0 commit comments