From 84df3a3ff80849e1f05168be6d948bdeec5c2e14 Mon Sep 17 00:00:00 2001 From: Rehber Moin Date: Sun, 20 Jul 2025 20:41:47 +0530 Subject: [PATCH] RC Build Fix --- .github/workflows/build.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 48fd4cb..a54fd8f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -71,11 +71,8 @@ jobs: - name: Create and Push Git Tag run: | - git checkout main # or your release branch 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 }} - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Create GitHub Release uses: softprops/action-gh-release@v2 @@ -89,6 +86,7 @@ jobs: - name: Upload JAR to GitHub Release uses: softprops/action-gh-release@v2 with: + tag_name: v${{ github.event.inputs.release_version }} files: target/*.jar env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file