| |
| |
|
|
| name: Upload Python Package |
|
|
| on: |
| release: |
| types: [created] |
|
|
| jobs: |
| deploy: |
|
|
| runs-on: ubuntu-latest |
|
|
| steps: |
| - uses: actions/checkout@v3 |
| - name: Set up Python |
| uses: actions/setup-python@v4 |
| with: |
| python-version: '3.x' |
| - name: Install Poetry |
| uses: snok/install-poetry@v1 |
| - name: Install dependencies |
| run: | |
| poetry run python -m pip install --upgrade pip |
| poetry update |
| poetry install |
| - name: Build and publish |
| env: |
| POETRY_HTTP_BASIC_PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }} |
| POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_API_TOKEN }} |
| run: | |
| poetry publish --build |