Skip to content

Commit

Permalink
update the release script
Browse files Browse the repository at this point in the history
  • Loading branch information
segasai committed Jul 7, 2022
1 parent 4cd4ad0 commit 04a5fcd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion make_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ if [ `git status --porcelain=v1 | grep -v '^??'|wc -l ` -eq 0 ] ; then echo 'Go
echo "__version__ = '$VERSION'" > py/sqlutilpy/version.py
git commit -m "New version $VERSION" -v py/sqlutilpy/version.py
git tag $VERSION
rm -rf dist/*
rm -rf dist/
rm -rf build/
rm -rf py/sqlutilpy.egg-info
python setup.py sdist bdist_wheel
twine check dist/*
twine upload dist/*

0 comments on commit 04a5fcd

Please sign in to comment.