From 259a564ce5e3e0051a5a1c8f6605ca0f3c7e5358 Mon Sep 17 00:00:00 2001 From: Rehber Moin Date: Sun, 27 Jul 2025 21:22:15 +0530 Subject: [PATCH] Pipeline fix --- .github/workflows/build.yml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b96f6df..c1f20b3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -75,21 +75,21 @@ jobs: git config user.name "${{ github.actor }}" git config user.email "${{ github.actor }}@users.noreply.github.com" - - name: Check if Tag Already Exists - id: check_tag - run: | - TAG="v${{ github.event.inputs.release_version }}" - if git rev-parse "$TAG" >/dev/null 2>&1; then - echo "exists=true" >> "$GITHUB_OUTPUT" - else - echo "exists=false" >> "$GITHUB_OUTPUT" - fi - - - name: Create and Push Git Tag - if: steps.check_tag.outputs.exists == 'false' - run: | - git tag -a "v${{ github.event.inputs.release_version }}" -m "Release v${{ github.event.inputs.release_version }}" - git push origin "v${{ github.event.inputs.release_version }}" +# - name: Check if Tag Already Exists +# id: check_tag +# run: | +# TAG="v${{ github.event.inputs.release_version }}" +# if git rev-parse "$TAG" >/dev/null 2>&1; then +# echo "exists=true" >> "$GITHUB_OUTPUT" +# else +# echo "exists=false" >> "$GITHUB_OUTPUT" +# fi +# +# - name: Create and Push Git Tag +# if: steps.check_tag.outputs.exists == 'false' +# run: | +# git tag -a "v${{ github.event.inputs.release_version }}" -m "Release v${{ github.event.inputs.release_version }}" +# git push origin "v${{ github.event.inputs.release_version }}" - name: Create GitHub Release if: steps.check_tag.outputs.exists == 'false'