bump version from 2.0.0
to 2.0.1
#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: Publish Trackers Releases to PyPI | |
on: | |
push: | |
tags: | |
- "[0-9]+.[0-9]+[0-9]+.[0-9]+[0-9]" | |
- "[0-9]+.[0-9]+[0-9]+.[0-9]" | |
- "[0-9]+.[0-9]+.[0-9]" | |
workflow_dispatch: | |
permissions: {} # Explicitly remove all permissions by default | |
jobs: | |
publish-release: | |
name: Publish Release Package | |
runs-on: ubuntu-latest | |
environment: | |
name: release | |
url: https://pypi.org/project/trackers/ | |
timeout-minutes: 10 | |
permissions: | |
id-token: write # Required for PyPI publishing | |
contents: read # Required for checkout | |
strategy: | |
matrix: | |
python-version: ["3.10"] | |
steps: | |
- name: 📥 Checkout the repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: 🐍 Install uv and set Python version ${{ matrix.python-version }} | |
uses: astral-sh/setup-uv@0c5e2b8115b80b4c7c5ddf6ffdd634974642d182 # v5.4.1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: 🏗️ Build source and wheel distributions | |
run: | | |
uv pip install -r pyproject.toml --group build | |
uv build | |
uv run twine check --strict dist/* | |
- name: 🚀 Publish to PyPi | |
uses: pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc # v1.12.4 | |
with: | |
attestations: true |