complete ci

This commit is contained in:
2025-10-08 16:26:31 +02:00
parent d6fb505c5a
commit 1a850b98e3
4 changed files with 62 additions and 1 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 }}