ci: add pre-release workflow (#4)
All checks were successful
CD / Release (push) Successful in 11s
All checks were successful
CD / Release (push) Successful in 11s
Reviewed-on: #4 Co-authored-by: t.behrendt <t.behrendt@t00n.de> Co-committed-by: t.behrendt <t.behrendt@t00n.de>
This commit was merged in pull request #4.
This commit is contained in:
15
.gitea/actions/release-git-tag/action.yaml
Normal file
15
.gitea/actions/release-git-tag/action.yaml
Normal 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 }}
|
||||
Reference in New Issue
Block a user