Skip to content

chore: bump version to 2.0.1 #1

chore: bump version to 2.0.1

chore: bump version to 2.0.1 #1

Workflow file for this run

# https://github.com/rexzhang/python-project-template/edit/main/.github/workflows/release-github.yaml
name: Publish package to PyPI
on:
push:
tags:
- "v*"
jobs:
pypi-publish:
name: Upload release to PyPI
runs-on: ubuntu-latest
environment:
name: pypi
url: ${{ vars.PYPI_PROJECT_URL }}
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- name: Checkout repository
# https://github.com/actions/checkout
uses: actions/checkout@v5
- name: Install dependencies
run: |
python3 -m pip install -U -r requirements.d/pypi.txt
- name: Build wheels
run: |
python -m build
- name: Publish package distributions to PyPI
# https://github.com/pypa/gh-action-pypi-publish
uses: pypa/gh-action-pypi-publish@release/v1