From 1b04ebe068e554c002690a69f02c57aea5315698 Mon Sep 17 00:00:00 2001 From: h1n1 Date: Sat, 20 Jun 2026 23:06:28 +0700 Subject: [PATCH] =?UTF-8?q?Fix:=20=D0=A3=D0=B1=D1=80=D0=B0=D0=BB=20=D0=B0?= =?UTF-8?q?=D1=80=D1=85=D0=B8=D0=B2=D0=B0=D1=86=D0=B8=D1=8E=20=D0=BF=D0=B5?= =?UTF-8?q?=D1=80=D0=B5=D0=B4=20=D1=82=D0=B5=D0=BC=20=D0=BA=D0=B0=D0=BA=20?= =?UTF-8?q?=D0=B7=D0=B0=D0=BB=D0=B8=D1=82=D1=8C=20=D0=B0=D1=80=D1=82=D0=B5?= =?UTF-8?q?=D1=84=D0=B0=D0=BA=D1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/autobuild.yaml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/autobuild.yaml b/.gitea/workflows/autobuild.yaml index 0a8ccc1..c0310e0 100644 --- a/.gitea/workflows/autobuild.yaml +++ b/.gitea/workflows/autobuild.yaml @@ -62,24 +62,21 @@ jobs: run: | chmod +x ${{ gitea.workspace }}/compile.sh sh ${{ gitea.workspace }}/compile.sh - zip -r release-linux.zip OUTPUT-Linux || true - zip -r release-w64.zip OUTPUT-w64 || true - zip -r release-w32.zip OUTPUT-w32 || true - name: Upload Linux Release uses: actions/upload-artifact@v3 with: - name: release-linux + name: OUTPUT-Linux path: release-linux.zip - name: Upload Windows64 Release uses: actions/upload-artifact@v3 with: - name: release-w64 + name: OUTPUT-w64 path: release-w64.zip - name: Upload Windows32 Release uses: actions/upload-artifact@v3 with: - name: release-w32 + name: OUTPUT-w32 path: release-w32.zip