Skip to content

Use trusted publishing for the release on PyPI #11

Use trusted publishing for the release on PyPI

Use trusted publishing for the release on PyPI #11

Workflow file for this run

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