We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1f25373 commit f9c1a85Copy full SHA for f9c1a85
Makefile
@@ -158,3 +158,15 @@ lint: --ensure-tools ## run linters
158
.PHONY: fix
159
fix: --ensure-tools ## fix issues found by linters
160
golangci-lint run --fix ./...
161
+
162
+delete-tag: ## deletes a tag from git locally and upstream
163
+ @read -p "Version: " tag; \
164
+ git tag -d $$tag; \
165
+ git push origin :$$tag
166
167
+release-vsn: # tags and pushes a new release
168
169
+ git checkout master; \
170
+ git pull --rebase; \
171
+ git tag -a $$tag -m "new release"; \
172
+ git push origin $$tag
0 commit comments