mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2026-01-04 07:39:43 -06:00
11 lines
234 B
Bash
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 |