summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Davison <dandavison7@gmail.com>2021-10-29 15:25:37 -0400
committerDan Davison <dandavison7@gmail.com>2021-10-29 15:25:37 -0400
commit3514c9e54c0cdba28b300e4e882174f44d9c1d96 (patch)
treeee1ace59d0eab58c5f3389b617bb2649168029fc
parent6ad9071932805500f0b972dc02d8bcdb29c31c64 (diff)
Don't use gren to generate release notes
-rw-r--r--etc/release.Makefile5
1 files changed, 1 insertions, 4 deletions
diff --git a/etc/release.Makefile b/etc/release.Makefile
index f5bd7819..79cb8d2e 100644
--- a/etc/release.Makefile
+++ b/etc/release.Makefile
@@ -38,14 +38,11 @@ $(BUMP_VERSION_SENTINEL):
CREATE_GITHUB_RELEASE_SENTINEL=.make-sentinels/create-github-release
create-github-release: $(CREATE_GITHUB_RELEASE_SENTINEL) check-environment
$(CREATE_GITHUB_RELEASE_SENTINEL):
- which gren > /dev/null
@echo \# Creating release tag
git tag "$$DELTA_NEW_VERSION"
git push
git push --tags
- @echo \# Draft and edit release notes in Github
- gren release -d -t "$$DELTA_NEW_VERSION".."$$DELTA_OLD_VERSION"
- @echo \# Wait for assets to appear at https://github.com/dandavison/delta/releases
+ @echo \# See https://github.com/dandavison/delta/releases
touch $(CREATE_GITHUB_RELEASE_SENTINEL)