2026.3.1a1 #2
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: Build distribution | ||
| on: | ||
| release: | ||
| types: [created] | ||
| jobs: | ||
| test: | ||
| uses: ./.github/workflows/test.yml | ||
|
Check warning on line 9 in .github/workflows/publish.yml
|
||
| deploy: | ||
| needs: test | ||
| name: Deploy to PyPI | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout source | ||
| uses: actions/checkout@v4 | ||
| - name: Set up Python 3.11 | ||
| uses: actions/setup-python@v4 | ||
| with: | ||
| python-version: 3.11 | ||
| - name: Install build dependencies | ||
| run: python -m pip install build twine | ||
| - name: Build distributions | ||
| run: python -m build | ||
| - name: Publish package to PyPI | ||
| uses: pypa/gh-action-pypi-publish@release/v1 | ||
| with: | ||
| user: __token__ | ||
| password: ${{ secrets.TWINE_PASSWORD}} | ||