From 7eabeb3e0497d74901c32c860faa0aeeb0cf9b2e Mon Sep 17 00:00:00 2001 From: Conrad Date: Mon, 1 Apr 2024 20:31:45 +0200 Subject: [PATCH] Moved to tagging without prefix --- .github/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5706ae8..c4fd4f9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,12 +59,11 @@ jobs: uses: codacy/git-version@2.8.0 id: git_version with: - prefix: v minor-identifier: "feat:" major-identifier: "breaking:" - name: Create Tag - run: git tag -a ${{ steps.git_version.outputs.version }} -m "${{ steps.git_version.outputs.version }}" + run: git tag ${{ steps.git_version.outputs.version }} - name: Push Tag run: git push origin ${{ steps.git_version.outputs.version }}