mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-18 16:02:10 +00:00
697f660532
* chore: fix python client build * nit
12 lines
341 B
Bash
Executable File
12 lines
341 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
./build.sh
|
|
|
|
cd windmill-api && poetry publish --username __token__ --password $PYPI_PASSWORD -n || true
|
|
cd ../wmill && poetry publish --username __token__ --password $PYPI_PASSWORD -n || true
|
|
sleep 5
|
|
cd ../wmill_pg && poetry publish --username __token__ --password $PYPI_PASSWORD -n || true
|
|
|
|
rm -rf windmill-api/
|