From b6241e7aad743eec604421d5a11cf526b1587191 Mon Sep 17 00:00:00 2001
From: Nix <75538775+nixietab@users.noreply.github.com>
Date: Tue, 31 Dec 2024 11:23:29 -0300
Subject: [PATCH] Update Build.yml

---
 .github/workflows/Build.yml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/Build.yml b/.github/workflows/Build.yml
index 9fd0b05..bc0ad49 100644
--- a/.github/workflows/Build.yml
+++ b/.github/workflows/Build.yml
@@ -43,13 +43,13 @@ jobs:
         echo "VERSION=$VERSION" >> $GITHUB_ENV  # Store version in the environment variable
         echo "NAME=$NAME" >> $GITHUB_ENV  # Store name in the environment variable
 
-    - name: Create Release
-      uses: softprops/action-gh-release@v1
-      with:
-        files: actions-temp/build/2hsu.exe  # Specify the path to the file to upload
-
     - 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
+
+    - name: Create Release
+      uses: softprops/action-gh-release@v1
+      with:
+        files: actions-temp/build/2hsu.exe  # Specify the path to the file to upload