Skip to content

Commit

Permalink
feat(pain001): Add Makefile for releasing
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastienrousseau committed Sep 11, 2023
1 parent a1ce3c9 commit 6143ecd
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Makefile for pain001

.PHONY: dist

dist:
rm -rf ./dist && \
python3 setup.py sdist bdist_wheel

release: dist
bzr diff && \
twine upload dist/* && \
bzr tag $$(python3 setup.py --version|tail -1) && \
bzr push

0 comments on commit 6143ecd

Please sign in to comment.