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 2521e4d commit 517169bCopy full SHA for 517169b
Makefile
@@ -44,13 +44,13 @@ bump: $(GOBIN)/gobump
44
ifneq ($(shell git status --porcelain),)
45
$(error git workspace is dirty)
46
endif
47
-ifneq ($(shell git rev-parse --abbrev-ref HEAD),main)
48
- $(error current branch is not main)
+ifneq ($(shell git rev-parse --abbrev-ref HEAD),master)
+ $(error current branch is not master)
49
50
@gobump up -w .
51
git commit -am "bump up version to $(VERSION)"
52
git tag "v$(VERSION)"
53
- git push origin main
+ git push origin master
54
git push origin "refs/tags/v$(VERSION)"
55
56
.PHONY: upload
0 commit comments