From 2a1ed25ac50b05a99fddb3c1ec953436989031d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B5=D0=B9=20=D0=91=D0=B0?= =?UTF-8?q?=D0=B4=D1=8F=D0=B5=D0=B2?= Date: Sat, 2 Nov 2024 01:03:02 +0700 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D1=80=D0=B0=D0=B1=D0=BE=D1=82?= =?UTF-8?q?=D0=B0=D0=BD=20release=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/release.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index 03927f4..fdb04a5 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -107,11 +107,13 @@ jobs: uses: https://git.mousesoft.ru/actions/download-artifact@v3-node20 with: name: ${{ needs.build_linux.outputs.artifact_amd64 }} + path: out - name: download linux arm64 package uses: https://git.mousesoft.ru/actions/download-artifact@v3-node20 with: name: ${{ needs.build_linux.outputs.artifact_arm64 }} + path: out - name: deploy packages env: @@ -131,15 +133,14 @@ jobs: Port $SSH_PORT StrictHostKeyChecking no END - find -O1 . -name '*.changes' -exec dput mousesoft \{\} \; + find -O1 out -name '*.changes' -exec dput mousesoft \{\} \; - name: release uses: https://git.mousesoft.ru/actions/gitea-release-action@v1 with: title: "Transocks ${{ needs.build.outputs.version }}" body: "${{ needs.build.outputs.changes }}" - files: | - *.deb + files: out/*.deb sha256sum: true prerelease: true draft: true