From f603a77130fba970516f51c45f8b129ba32df57d Mon Sep 17 00:00:00 2001 From: Maxim Slipenko Date: Thu, 28 Sep 2023 16:08:11 +0300 Subject: [PATCH] =?UTF-8?q?ci:=20ubuntu-latest=20=D0=B7=D0=B0=D0=BC=D0=B5?= =?UTF-8?q?=D0=BD=D0=B5=D0=BD=D0=B0=20ubuntu-latest?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a219ab9..8a134f4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,11 +13,16 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, windows-latest] + os: [ubuntu-20.04, windows-latest] spec: [statapp-onefile, statapp] arch: [x86, x64] + include: + - os: ubuntu-20.04 + target: linux + - os: windows-latest + target: windows exclude: - - os: ubuntu-latest + - os: ubuntu-20.04 arch: x86 defaults: run: @@ -48,12 +53,12 @@ jobs: with: type: 'zip' directory: 'dist' - filename: "../${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.spec }}.zip" + filename: "../${{ matrix.target }}-${{ matrix.arch }}-${{ matrix.spec }}.zip" - name: Загрузка артефактов uses: actions/upload-artifact@v3 with: - name: ${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.spec }} - path: '${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.spec }}.zip' + name: ${{ matrix.target }}-${{ matrix.arch }}-${{ matrix.spec }} + path: '${{ matrix.target }}-${{ matrix.arch }}-${{ matrix.spec }}.zip' release-please: runs-on: ubuntu-latest