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 39202b4 commit 2764fe6Copy full SHA for 2764fe6
Makefile
@@ -1,5 +1,5 @@
1
PREVIOUS_TAG ?= $(shell git tag -l | tail -n 1)
2
-TAG=v0.1.9
+TAG=v0.1.10
3
4
.PHONY: build install bump tag release update-config test
5
@@ -11,8 +11,9 @@ install: build
11
sudo install -m 755 dist/roc /usr/local/bin/roc
12
13
tag:
14
+ git commit -m "Bump version to $(TAG)" Makefile
15
git tag -a $(TAG) -m "Release $(TAG)"
- git push origin $(TAG)
16
+ git push origin main && git push origin $(TAG)
17
18
test:
19
go test ./...
0 commit comments