From cb3493115173757c6b4bb34c0ccf4e0822f91393 Mon Sep 17 00:00:00 2001 From: Maxim Slipenko Date: Thu, 28 Sep 2023 10:53:36 +0300 Subject: [PATCH] =?UTF-8?q?ci:=20=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8?= =?UTF-8?q?=D0=BB=20=D0=B0=D1=80=D1=85=D0=B8=D0=B2=D0=B0=D1=86=D0=B8=D1=8E?= =?UTF-8?q?=20=D0=B2=20zip=20=D1=84=D0=B0=D0=B9=D0=BB=D0=BE=D0=B2=20=D1=81?= =?UTF-8?q?=D0=B1=D0=BE=D1=80=D0=BA=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3398af6..7bf4eee 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -42,12 +42,18 @@ jobs: - name: Установка зависимостей run: poetry install - name: Сборка - run: poetry run pyinstaller ${{ matrix.spec }}.spec + run: poetry run pyinstaller ${{ matrix.spec }}.spec\ + - name: Архивация + uses: thedoctor0/zip-release@0.7.1 + with: + type: 'zip' + filename: '${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.spec }}.zip' + path: 'dist' - name: Загрузка артефактов uses: actions/upload-artifact@v3 with: name: ${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.spec }} - path: ./dist/statapp* + path: '${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.spec }}.zip' release-please: runs-on: ubuntu-latest