Skip to content

Commit

Permalink
updated release script
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexPatrie committed Jan 8, 2024
1 parent 7b06faf commit b448278
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ git tag -m "Version v$version" "v$version"
git push --tags

# Create and publish package
python ../setup.py sdist bdist_wheel
twine check ../dist/*
twine upload ../dist/*
rm -r ../dist && rm -r ../build && rm -r ../biosimulator_processes.egg-info
python setup.py sdist bdist_wheel
twine check dist/*
twine upload dist/*
rm -r dist && rm -r build && rm -r biosimulator_processes.egg-info

echo "Version v$version has been published on PyPI and has a git tag."

0 comments on commit b448278

Please sign in to comment.