From 91e39f4e6589bda57930c240be66a17502a8d2c3 Mon Sep 17 00:00:00 2001 From: kjuulh Date: Fri, 17 Feb 2023 18:50:18 +0100 Subject: [PATCH] add creator of tags --- .github/workflows/create-tag.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/create-tag.yml diff --git a/.github/workflows/create-tag.yml b/.github/workflows/create-tag.yml new file mode 100644 index 0000000..7b82752 --- /dev/null +++ b/.github/workflows/create-tag.yml @@ -0,0 +1,19 @@ +name: Deploy +on: + workflow_dispatch: +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout Code + uses: actions/checkout@v2 + - name: Get Next Version + id: semver + uses: ietf-tools/semver-action@v1 + with: + token: ${{ github.token }} + branch: main + - uses: rickstaa/action-create-tag@v1 + with: + tag: ${{ steps.semver.outputs.next }} + message: ${{ steps.semver.outputs.next }}