Use trusted publishing for the release on PyPI #11
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: Publish DBUtils on PyPI | |
| on: | |
| push: | |
| tags: | |
| - 'Release-*' | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| # authenticate with an OpenID Connect token issued by GitHub | |
| # instead of an API token, using the trusted publisher on PyPI | |
| # that has been registered for this workflow and environment | |
| permissions: | |
| id-token: write | |
| environment: | |
| name: pypi | |
| url: https://pypi.org/p/DBUtils | |
| steps: | |
| - name: Check out the repository | |
| uses: actions/checkout@v7 | |
| - name: Set up Python | |
| uses: actions/setup-python@v7 | |
| with: | |
| python-version: "3.14" | |
| - name: Install build tool | |
| run: python -m pip install build --user | |
| - name: Build source tarball and wheel | |
| run: python -m build | |
| - name: Publish distribution to PyPI | |
| uses: pypa/gh-action-pypi-publish@release/v1 |