From 97cfa1109b7f22a355cab3bdcdc893a42dc7dc75 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: Fri, 11 Oct 2024 11:48:41 +0700 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B0=20=D0=B7=D0=B0=D0=B3=D1=80=D1=83=D0=B7=D0=BA?= =?UTF-8?q?=D0=B0=20=D0=B0=D1=80=D1=82=D0=B5=D1=84=D0=B0=D0=BA=D1=82=D0=BE?= =?UTF-8?q?=D0=B2=20=D0=B2=20workflow.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/build.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 5421bd5..a910761 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -38,20 +38,20 @@ jobs: if: steps.cache.outputs.cache-hit != 'true' run: GOARCH=amd64 make dist - - name: upload amd64 binary + - name: upload amd64 binary artifact uses: https://gitea.com/actions/upload-artifact@v3 with: name: drawio-export-amd64 - path: out/dist/*-amd64.tar.gz + path: out/*-amd64.tar.gz overwrite: true - name: build arm64 binary if: steps.cache.outputs.cache-hit != 'true' run: GOARCH=arm64 make dist - - name: upload arm64 binary + - name: upload arm64 binary artifact uses: https://gitea.com/actions/upload-artifact@v3 with: name: drawio-export-arm64 - path: out/dist/*-arm64.tar.gz + path: out/*-arm64.tar.gz overwrite: true