Skip to content

Commit

Permalink
Merge pull request #26 from QAInsights/fix/gh-actions
Browse files Browse the repository at this point in the history
fix/gh actions
  • Loading branch information
QAInsights authored Nov 19, 2023
2 parents b2b24ad + 9c8df7a commit ac71ece
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,32 +31,32 @@ jobs:
pip install py2app
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Generate app for x86_64 architecture
run: |
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: Upload x86_64 app
uses: actions/upload-artifact@v2
with:
name: dist-x86_64
path: dist-x86_64
- name: Generate app for x86_64 architecture
run: |
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: 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: List current directory
run: |
ls -la
uname -a
- name: List current directory
run: |
ls -la
uname -a
# - name: Create Release
# id: create_release
Expand Down

0 comments on commit ac71ece

Please sign in to comment.