Skip to content

Commit

Permalink
Don't use build script, just call pip and pyinstaller.
Browse files Browse the repository at this point in the history
  • Loading branch information
wjl committed Oct 19, 2024
1 parent b3010ca commit 9dc5303
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ jobs:
with:
python-version: "3.12"
cache: "pip"
- run: pip install -r requirements.txt
- run: |
./build.sh
pyinstaller --onefile --noconsole tray-timer.py
mv dist/tray-timer dist/tray-timer.linux.x86_64
- uses: actions/upload-artifact@v4
with:
Expand All @@ -27,8 +28,9 @@ jobs:
with:
python-version: "3.12"
cache: "pip"
- run: pip install -r requirements.txt
- run: |
./build.sh
pyinstaller --onefile --noconsole tray-timer.py
mv dist/tray-timer dist/tray-timer.windows.x86_64
- uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 9dc5303

Please sign in to comment.