Skip to content

Commit

Permalink
include support for tagging new releases
Browse files Browse the repository at this point in the history
fixes #236
  • Loading branch information
rsalmei committed May 25, 2023
1 parent 174866d commit 3adb1ff
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,15 @@ lint:
build: lint clean
python setup.py sdist bdist_wheel

release: build
release: build && tag
twine upload dist/*

tag:
#!/usr/bin/env zsh
tag=$(python -c 'import alive_progress; print("v" + alive_progress.__version__)')
git tag -a $tag -m ""
git push origin $tag

test:
pytest {{cov}}

Expand Down

0 comments on commit 3adb1ff

Please sign in to comment.