v2.3.2 #220
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: cd | |
| on: | |
| release: | |
| types: | |
| - published | |
| permissions: | |
| id-token: write | |
| contents: read | |
| jobs: | |
| publish_to_pypi: | |
| name: publish to pypi on new release | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: JRubics/poetry-publish@v1.16 | |
| name: Build and publish to PyPI | |
| with: | |
| pypi_token: ${{ secrets.PYPI_TOKEN }} | |
| repository_url: https://upload.pypi.org/legacy/ | |
| repository_name: pandasai | |
| poetry_install_options: "--without dev" |