We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6106685 commit ec2b42dCopy full SHA for ec2b42d
Makefile
@@ -86,5 +86,15 @@ prep-release:
86
sed -i "s/$${OLD_VERSION}/$${NEW_VERSION}/" internal/cmd/client_version.go docs/config.toml
87
touch docs/content/releases/$(NEW_VERSION).md
88
89
+.PHONY: prep-release-docs
90
prep-release-docs: prep-release cli-docs
91
92
+.PHONY: tag
93
+tag:
94
+ @echo "Tagging and pushing as v$(NEW_VERSION)"
95
+ @echo -n "Are you sure? [y/N] " && read ans && [ $${ans:-N} = y ]
96
+ git tag "v$(NEW_VERSION)"
97
+ git push origin "v$(NEW_VERSION)"
98
+ git tag "d$(NEW_VERSION)"
99
+ git push origin "d$(NEW_VERSION)"
100
+ @echo "Make release from tag "v$(NEW_VERSION)"
0 commit comments