From 8740eafce2d5e6b076166334b8887e2cf0801abb Mon Sep 17 00:00:00 2001 From: Conrad Date: Thu, 24 Oct 2024 11:47:41 +0200 Subject: [PATCH] fix: fixed pipeline tagging --- .github/workflows/ci.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1a1a103..fc0cebe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,12 +73,7 @@ jobs: - name: Create Tag if: github.head_ref == 'master' || github.head_ref == 'dev' - run: | - if [ "${{ github.head_ref }}" == "master" ]; then - git tag ${{ steps.git_version.outputs.version }} - elif [ "${{ github.head_ref }}" == "dev" ]; then - git tag ${{ steps.git_version.outputs.version }}-rc - fi + run: git tag ${{ steps.git_version.outputs.version }} - name: Push tag run: git push origin ${{ steps.git_version.outputs.version }}