Files
hatchet/python-sdk/publish.sh
2024-01-26 19:46:17 -07:00

11 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