From 0702f918ddc377a747d5c704a3a01b6ca33fcb3b Mon Sep 17 00:00:00 2001 From: Nix <75538775+nixietab@users.noreply.github.com> Date: Tue, 31 Dec 2024 11:27:09 -0300 Subject: [PATCH] Update Build.yml --- .github/workflows/Build.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/Build.yml b/.github/workflows/Build.yml index bc0ad49..1fbcdb9 100644 --- a/.github/workflows/Build.yml +++ b/.github/workflows/Build.yml @@ -45,9 +45,10 @@ jobs: - name: Tag release run: | - VERSION_NAME="${VERSION} ${NAME}" - git tag -a "v${VERSION}" -m "Release ${VERSION_NAME}" # Tag the release with version number and name - git push origin "v${VERSION}" # Push the tag 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 push origin "v${env:VERSION}" # Push the tag to GitHub + - name: Create Release uses: softprops/action-gh-release@v1