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 c67dde8 commit aa43f01Copy full SHA for aa43f01
release.sh
@@ -1,9 +1,14 @@
1
#!/usr/bin/env bash
2
set -euo pipefail
3
4
-tox --recreate
+poetry install
5
+poetry run tox --recreate
6
7
rm -rf dist/
8
poetry build
9
-# TODO: automate releases on tag builds of travis
10
+echo "Set these environment variables if you wish to not be pestered:"
11
+echo "export POETRY_PYPI_TOKEN_PYPI=my-token"
12
+echo "export POETRY_HTTP_BASIC_PYPI_USERNAME=username"
13
+echo "export POETRY_HTTP_BASIC_PYPI_PASSWORD=password"
14
+poetry publish --no-interaction
0 commit comments