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