From 16201224ced29e12fec4f229d1786060414f19e2 Mon Sep 17 00:00:00 2001 From: Nitwel Date: Tue, 21 Nov 2023 13:45:54 +0100 Subject: [PATCH] add release tag workflow --- .github/workflows/release.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..30f8d3e --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,24 @@ +name: Create new Release + +on: + workflow_dispatch: + inputs: + tag: + description: "New tag name" + required: true + +jobs: + version: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + lfs: true + fetch-depth: 0 + - name: Create and push new Tag + run: | + git config user.name "Nitwel" + git config user.email "mail@nitwel.de" + + git tag ${{ github.event.inputs.tag }} + git push origin ${{ github.event.inputs.tag }}