Skip to content

Release to GitHub and push tag #127

Release to GitHub and push tag

Release to GitHub and push tag #127

Workflow file for this run

name: Release to GitHub and push tag
on:
workflow_dispatch:
inputs:
release-type:
description: "SemVer scope of the release"
type: choice
required: true
default: patch
options:
- patch
- minor
- major
jobs:
create-github-release-push-tag:
uses: ./.github/workflows/python-uv-release.yaml
name: Release
with:
release-type: ${{ inputs.release-type }}
python-version: "3.11"
uv-version: "0.5.14"
changelog: true
changelog-file: "./docs/docs/user/changelog.md"
secrets:
github-username: "${{ secrets.GH_USERNAME }}"
github-email: "${{ secrets.GH_EMAIL }}"
github-token: "${{ secrets.GH_TOKEN }}"