mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-19 08:01:25 +00:00
11 lines
325 B
Bash
Executable File
11 lines
325 B
Bash
Executable File
#!/bin/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
|
|
cd ../wmill_pg && poetry publish --username __token__ --password $PYPI_PASSWORD -n || true
|
|
|
|
rm -rf windmill-api/
|