From 51254551f99549f2b6afba8f38f4f0ad809c44eb Mon Sep 17 00:00:00 2001
From: Karutoh <NelsonArron@outlook.com>
Date: Mon, 5 Feb 2024 22:03:28 -0800
Subject: [PATCH] Fixed workflow.

---
 .gitea/workflows/BuildRelease.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.gitea/workflows/BuildRelease.yaml b/.gitea/workflows/BuildRelease.yaml
index c7f4ed8..916b1cc 100644
--- a/.gitea/workflows/BuildRelease.yaml
+++ b/.gitea/workflows/BuildRelease.yaml
@@ -35,7 +35,7 @@ jobs:
       - name: Zipping Binaries
         run: |
           cd ${{ gitea.workspace }}
-          tar -a -c -f ehs-linux-amd64.zip include bin lib docs
+          tar -a -c -f ehs-windows-amd64.zip include bin lib docs
 
       - uses: https://github.com/actions/setup-go@v4
         with:
@@ -46,7 +46,7 @@ jobs:
         uses: https://gitea.com/actions/release-action@main
         with:
           files: |-
-            ehs-linux-amd64.zip
+            ehs-windows-amd64.zip
           api_key: '${{secrets.RELEASE_TOKEN}}'
 
   Linux-AMD64-Build: