Skip to content

Commit

Permalink
Merge pull request #29 from QAInsights/fix/gh-actions
Browse files Browse the repository at this point in the history
Add: Arch to GH Actions
  • Loading branch information
QAInsights authored Nov 19, 2023
2 parents f924fa9 + 138f816 commit 2074d6c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
Binary file modified .DS_Store
Binary file not shown.
20 changes: 10 additions & 10 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,25 +33,25 @@ jobs:
- name: Generate app for x86_64 architecture
run: |
python setup.py py2app
arch -x86_64 python setup.py py2app --arch x86_64
mv dist dist-x86_64
# - name: Generate app for arm64 architecture
# run: |
# python setup.py py2app --arch arm64
# mv dist dist-arm64
- name: Generate app for arm64 architecture
run: |
arch -arm64 python setup.py py2app --arch arm64
mv dist dist-arm64
- name: Upload x86_64 app
uses: actions/upload-artifact@v2
with:
name: dist-x86_64
path: dist-x86_64

# - name: Upload arm64 app
# uses: actions/upload-artifact@v2
# with:
# name: dist-arm64
# path: dist-arm64
- name: Upload arm64 app
uses: actions/upload-artifact@v2
with:
name: dist-arm64
path: dist-arm64


# - name: Create Release
Expand Down

0 comments on commit 2074d6c

Please sign in to comment.