Skip to content

Commit

Permalink
Merge pull request #17 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 18, 2023
2 parents 5b658af + 6c69586 commit d89fc8f
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
Binary file modified .DS_Store
Binary file not shown.
26 changes: 24 additions & 2 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,31 @@ jobs:
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Generate app using py2app
run: |
python setup.py py2app
python setup.py py2app --arch arm64
- name: Upload dist folder
uses: actions/upload-artifact@v2
with:
name: dist
path: dist
# - name: Create Release
# id: create_release
# uses: actions/create-release@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# tag_name: ${{ github.ref }}
# release_name: Release ${{ github.ref }}
# body: |
# Release ${{ github.ref }}
# draft: false
# prerelease: false
# - name: Upload Release Asset
# id: upload-release-asset
# uses: actions/upload-release-asset@v1
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# with:
# upload_url: ${{ steps.create_release.outputs.upload_url }}
# asset_path: dist/
# asset_name: dist
# asset_content_type: application/zip
# path: dist

0 comments on commit d89fc8f

Please sign in to comment.