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 840a6d6 commit b9f72ddCopy full SHA for b9f72dd
Makefile
@@ -27,3 +27,10 @@ clean: ## cleans dist and site folders
27
.PHONY: test
28
test: ## runs the tests with coverage report
29
pytest --cov=timebombs --cov-report=term-missing --cov-report=xml -o console_output_style=progress tests
30
+
31
+.PHONY: release
32
+release: ## creates a release on github (e.g. make release name=v0.20)
33
+ poetry build
34
+ gh release create $(name) --generate-notes
35
+ git fetch --all
36
+ poetry publish
0 commit comments