test3 / ci_cd /publish-proxy-extras.sh
DesertWolf's picture
Upload folder using huggingface_hub
447ebeb verified
raw
history blame contribute delete
367 Bytes
#!/bin/bash
# Exit on error
set -e
echo "πŸš€ Building and publishing litellm-proxy-extras"
# Navigate to litellm-proxy-extras directory
cd "$(dirname "$0")/../litellm-proxy-extras"
# Build the package
echo "πŸ“¦ Building package..."
poetry build
# Publish to PyPI
echo "🌎 Publishing to PyPI..."
poetry publish
echo "βœ… Done! Package published successfully"