Update Build.yml

This commit is contained in:
Nix 2024-12-31 11:27:09 -03:00 committed by GitHub
parent 5792bcb6eb
commit 0702f918dd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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