From 0022b52d6aa10b459c85e85602d1785858e8bbd7 Mon Sep 17 00:00:00 2001 From: Boldi Date: Wed, 4 Oct 2023 11:03:52 +0100 Subject: [PATCH] Working on proper deployment --- .github/workflows/deploy.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index ee6386ab..2ae31259 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: # os: [ ubuntu-latest, windows-latest, macos-latest ] - os: [ macos-latest-large ] + os: [ ubuntu-latest ] python-version: [ 3.11 ] runs-on: ${{ matrix.os }} steps: @@ -25,10 +25,10 @@ jobs: - name: Install base package run: pip install cx_freeze - name: Build MacOS - if: matrix.os == 'macos-latest-large' - run: python deploy.py bdist_dmg + if: matrix.os == 'ubuntu-latest' + run: python deploy.py bdist_rpm - name: Upload build uses: actions/upload-artifact@v3 with: name: ${{ matrix.os }} - path: build/*.dmg \ No newline at end of file + path: build/*.rpm \ No newline at end of file