Update Build.yml

This commit is contained in:
Nix 2024-12-31 11:33:40 -03:00 committed by GitHub
parent eb6b27ed23
commit 1543b36eb5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -45,6 +45,11 @@ jobs:
- name: Tag release
run: |
# Set Git user for the GitHub Actions runner
git config user.name "github-actions"
git config user.email "github-actions@github.com"
# 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 push origin "v${env:VERSION}" # Push the tag to GitHub