The wmill_pg package (psycopg2 wrapper for running PostgreSQL queries) has been fully replaced by Windmill's native PostgreSQL support. Remove the package directory and all references from build, publish, install, version, LSP, and dependabot configs. Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
10 lines
242 B
Bash
Executable File
10 lines
242 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
|
|
|
|
rm -rf windmill-api/
|