Skip to content

bump: version 4.13.9 → 4.13.10 #100

bump: version 4.13.9 → 4.13.10

bump: version 4.13.9 → 4.13.10 #100

Workflow file for this run

name: Upload Python Package
# The tag is now triggered by the Github App: CommitizenBot
on:
push:
tags:
- "v*"
jobs:
deploy:
if: ${{ github.repository == 'commitizen-tools/commitizen' }}
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
ref: ${{ github.ref_name }}
- name: Set up Python
uses: astral-sh/setup-uv@v7
- name: Build
run: uv build
- name: Publish package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1