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>
16 lines
275 B
YAML
16 lines
275 B
YAML
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 }}
|