12 lines
333 B
Bash
Executable File
12 lines
333 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
|
|
sleep 5
|
|
cd ../wmill_pg && poetry publish --username __token__ --password $PYPI_PASSWORD -n || true
|
|
|
|
rm -rf windmill-api/
|