From 1543b36eb5d5de286d8e9fb9e63088f37b663209 Mon Sep 17 00:00:00 2001 From: Nix <75538775+nixietab@users.noreply.github.com> Date: Tue, 31 Dec 2024 11:33:40 -0300 Subject: [PATCH] Update Build.yml --- .github/workflows/Build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/Build.yml b/.github/workflows/Build.yml index 1fbcdb9..9bb1240 100644 --- a/.github/workflows/Build.yml +++ b/.github/workflows/Build.yml @@ -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