From aa8a72c8cb9a83536a00451174935d4dbb513b5d Mon Sep 17 00:00:00 2001 From: Nix <75538775+nixietab@users.noreply.github.com> Date: Tue, 31 Dec 2024 11:40:14 -0300 Subject: [PATCH] Update Build.yml --- .github/workflows/Build.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Build.yml b/.github/workflows/Build.yml index b6a00ae..fae3e2c 100644 --- a/.github/workflows/Build.yml +++ b/.github/workflows/Build.yml @@ -53,11 +53,14 @@ jobs: git config user.name "github-actions" git config user.email "github-actions@github.com" + # Set VERSION_NAME using environment variables + echo "VERSION_NAME=${{ env.VERSION }} ${{ env.NAME }}" >> $GITHUB_ENV # Store the full version name + # Create the tag and push it to GitHub - VERSION_NAME="${{ env.VERSION }} ${{ env.NAME }}" - git tag -a "v${{ env.VERSION }}" -m "Release $VERSION_NAME" # Tag the release with version number and name + git tag -a "v${{ env.VERSION }}" -m "Release ${{ env.VERSION }} ${{ env.NAME }}" # Tag the release git push origin --tags # Push all tags to GitHub + - name: Create Release uses: softprops/action-gh-release@v1 with: