Skip to content

Commit

Permalink
add gh release target to Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
cdent committed Aug 8, 2024
1 parent 0b3bc93 commit 731a9b2
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: test clean reclean tagv pypi release docs
.PHONY: test clean reclean tagv pypi release docs gh

default:
@echo "Pick a target (e.g., clean, test)"
Expand Down Expand Up @@ -37,4 +37,7 @@ pypi:
docs:
tox -edocs

release: clean test tagv reclean pypi
release: clean test tagv reclean pypi gh

gh:
gh release create v`python setup.py --version` --generate-notes dist/*

0 comments on commit 731a9b2

Please sign in to comment.