cd #219
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 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.11" | |
| - name: Upgrade pip | |
| run: python -m pip install --upgrade pip | |
| - name: Install Poetry 1.7.1 | |
| run: pip install poetry==1.7.1 | |
| - uses: JRubics/poetry-publish@v1.16 | |
| name: Build and publish to PyPI | |
| with: | |
| pypi_token: ${{ secrets.PYPI_TOKEN }} | |
| ignore_dev_requirements: "yes" | |
| repository_url: https://upload.pypi.org/legacy/ | |
| repository_name: pandasai |