ci: add pre-release workflow
All checks were successful
CI / Dry-Run (pull_request) Successful in 10s

This commit is contained in:
2025-10-08 15:56:43 +02:00
parent 2e2dcc7fbe
commit 6bfb570257
3 changed files with 41 additions and 5 deletions

View File

@@ -0,0 +1,15 @@
name: Release Git tag
description: Release the Git tag
inputs:
tag:
description: The tag to release
required: true
runs:
using: "composite"
steps:
- shell: bash
run: |
git tag ${{ inputs.tag }}
git push origin ${{ inputs.tag }}