Skip to content

build(deps): Bump commitizen from 3.14.1 to 3.26.0 #79

build(deps): Bump commitizen from 3.14.1 to 3.26.0

build(deps): Bump commitizen from 3.14.1 to 3.26.0 #79

Workflow file for this run

name: Publish
on:
push:
tags:
- "v*.*.*"
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- name: Build package
run: poetry build -vvv
- uses: actions/upload-artifact@v4
with:
name: package
path: |
README.md
pyproject.toml
dist/*
if-no-files-found: error
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
pypi:
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
environment: release
permissions:
id-token: write
needs: build
steps:
- uses: actions/download-artifact@v4
with:
name: package
- run: ls dist/*
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1