prefix git tag with 'v' (#1418)
This commit is contained in:
parent
77c004f6ba
commit
c3b0644bbc
2
Makefile
2
Makefile
|
@ -215,7 +215,7 @@ release:
|
|||
comparison="$$latest_tag..HEAD"; \
|
||||
if [ -z "$$latest_tag" ]; then comparison=""; fi; \
|
||||
changelog=$$(git log $$comparison --oneline --no-merges --format="* %h %s"); \
|
||||
github-release $(shell if [ $(PRE_RELEASE) != "0" ] ; then echo "-prerelease" ; fi) "status-im/status-go" "$(RELEASE_TAG)" "$(RELEASE_BRANCH)" "$(changelog)" "$(RELEASE_DIRECTORY)/*" ; \
|
||||
github-release $(shell if [ $(PRE_RELEASE) != "0" ] ; then echo "-prerelease" ; fi) "status-im/status-go" "v$(RELEASE_TAG)" "$(RELEASE_BRANCH)" "$(changelog)" "$(RELEASE_DIRECTORY)/*" ; \
|
||||
else \
|
||||
echo "Aborting." && exit 1; \
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue