Skip to content

♻️ refactor: format task name based on its own matrix #27

♻️ refactor: format task name based on its own matrix

♻️ refactor: format task name based on its own matrix #27

Workflow file for this run

name: Generate Release Tag
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
concurrency: release
permissions:
id-token: write
contents: write
steps:
- name: Checkout 📦
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Python Semantic Release 🚀
id: release
uses: python-semantic-release/python-semantic-release@v9.9.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
changelog: true
root_options: "-c releaserc.toml -vv"
- name: Install the latest version of uv 📦
uses: astral-sh/setup-uv@v2
- name: Build distributions 📦
run: uv build
- name: Publish package distributions to PyPI 🚀
if: steps.release.outputs.released == 'true'
uses: pypa/gh-action-pypi-publish@release/v1
with:
verbose: true
- name: Publish package distributions to GitHub Releases 🚀
if: steps.release.outputs.released == 'true'
uses: python-semantic-release/publish-action@v9.9.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ steps.release.outputs.tag }}