Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
dhinakg authored Jun 10, 2023
1 parent ead1f73 commit 0c6823a
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: Build
on:
push:
pull_request:
workflow_dispatch:
release:
types: [published]
Expand All @@ -15,12 +14,12 @@ jobs:
# run: brew install python3

- name: Install Python Dependencies
run: /Library/Frameworks/Python.framework/Versions/3.9/bin/pip3 install -r requirements.txt
run: pip3 install -r requirements.txt

- name: Install Debug Dependencies
run: /Library/Frameworks/Python.framework/Versions/3.9/bin/pip3 install pyinstaller
run: pip3 install pyinstaller
- name: Build for macOS
run: /Library/Frameworks/Python.framework/Versions/3.9/bin/pyinstaller spec/macOS.spec
run: pyinstaller spec/macOS.spec

- name: Zip
run: cd dist; zip macOS.zip macOS
Expand Down

0 comments on commit 0c6823a

Please sign in to comment.