We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11fd197 commit f974db7Copy full SHA for f974db7
1 file changed
Makefile
@@ -58,8 +58,9 @@ bin/windows/amd64/$(EXECUTABLE).exe:
58
release: clean
59
$(MAKE) bin/tmp/$(EXECUTABLE) $(COMPRESSED_EXECUTABLE_TARGETS)
60
git push && git push --tags
61
- bin/tmp/$(EXECUTABLE) release -u $(USER) -r $(EXECUTABLE) \
62
- -t $(LAST_TAG) -n $(LAST_TAG) || true
+ git log --format=%B $(LAST_TAG) -1 | \
+ bin/tmp/$(EXECUTABLE) release -u $(USER) -r $(EXECUTABLE) \
63
+ -t $(LAST_TAG) -n $(LAST_TAG) -d - || true
64
$(foreach FILE,$(COMPRESSED_EXECUTABLES),$(UPLOAD_CMD);)
65
66
# install and/or update all dependencies, run this from the project directory
0 commit comments