From b0969597123143c5f6599baddee3a3839991f9d4 Mon Sep 17 00:00:00 2001 From: h1n1 Date: Sun, 14 Jun 2026 09:05:37 +0700 Subject: [PATCH] =?UTF-8?q?=D0=A0=D0=B0=D0=B7=D0=B4=D0=B5=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5=20=D0=B0=D1=80=D1=82=D0=B5=D1=84=D0=B0=D0=BA?= =?UTF-8?q?=D1=82=D0=BE=D0=B2=20=D0=BD=D0=B0=202=20=D0=B0=D1=80=D1=85?= =?UTF-8?q?=D0=B8=D0=B2=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Чисто для того чтобы можно было скачать только нужный архивчик. --- .gitea/workflows/autobuild.yaml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/autobuild.yaml b/.gitea/workflows/autobuild.yaml index ab4fb04..6c2912c 100644 --- a/.gitea/workflows/autobuild.yaml +++ b/.gitea/workflows/autobuild.yaml @@ -65,10 +65,14 @@ jobs: zip -r release-linux.zip OUTPUT-Linux || true zip -r release-w64.zip OUTPUT-w64 || true - - name: Upload artifacts + - name: Upload Linux Release uses: actions/upload-artifact@v3 with: - name: build-artifacts - path: | - release-linux.zip - release-w64.zip + name: release-linux + path: release-linux.zip + + - name: Upload Windows64 Release + uses: actions/upload-artifact@v3 + with: + name: release-w64 + path: release-w64.zip