Skip to content

Commit

Permalink
Merge pull request #22 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 5b97218 + 10e8e28 commit 3215196
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
Binary file modified .DS_Store
Binary file not shown.
13 changes: 11 additions & 2 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,24 +14,33 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10

- name: Set up Python 3.9
uses: actions/setup-python@v3
with:
python-version: "3.9"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install py2app
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Generate app using py2app
run: |
python setup.py py2app
- name: List current directory
run: |
ls -la
- name: Upload app
uses: actions/upload-artifact@v2
with:
name: dist
path: dist
# - name: Create Release

# - name: Create Release
# id: create_release
# uses: actions/create-release@v1
# env:
Expand Down

0 comments on commit 3215196

Please sign in to comment.