mirror of
https://github.com/Dinnerbone/mcstatus.git
synced 2026-04-06 03:51:23 +08:00
15 lines
367 B
Bash
Executable File
15 lines
367 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
poetry install
|
|
poetry run tox --recreate
|
|
|
|
rm -rf dist/
|
|
poetry build
|
|
|
|
echo "Set these environment variables if you wish to not be pestered:"
|
|
echo "export POETRY_PYPI_TOKEN_PYPI=my-token"
|
|
echo "export POETRY_HTTP_BASIC_PYPI_USERNAME=username"
|
|
echo "export POETRY_HTTP_BASIC_PYPI_PASSWORD=password"
|
|
poetry publish --no-interaction
|