Skip to content

Commit

Permalink
Working on proper deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
boldar99 committed Oct 4, 2023
1 parent ef64462 commit 0022b52
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
path: build/*.rpm

0 comments on commit 0022b52

Please sign in to comment.