Files
windmill/python-client/publish.sh
Ruben Fiszel 6eca08480a chore: remove legacy wmill_pg python client (#8155)
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>
2026-03-01 08:52:35 +00:00

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/