mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2025-12-30 05:09:44 -06:00
12 lines
234 B
Bash
12 lines
234 B
Bash
#!/bin/bash
|
|
# This scripts generates and publishes the python package.
|
|
|
|
# env name is required
|
|
if [ -z "$POETRY_PYPI_TOKEN_PYPI" ]; then
|
|
echo "Please set POETRY_PYPI_TOKEN_PYPI variable"
|
|
exit 1
|
|
fi
|
|
|
|
poetry build
|
|
poetry publish
|