feat: add release-git-tag (#3)
Some checks failed
CD / Release (push) Failing after 6s

We are adding the release-git-tag action as well as some CICD steps.

Reviewed-on: #3
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
This commit was merged in pull request #3.
This commit is contained in:
2025-10-13 20:44:17 +02:00
committed by t.behrendt
parent 47115304e8
commit 531d8441c4
5 changed files with 61 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
name: Release Git tag
description: Releases a Git to origin
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 }}