Skip to content

Commit

Permalink
ci: fix several problems
Browse files Browse the repository at this point in the history
  • Loading branch information
fred913 committed Aug 27, 2024
1 parent 2367344 commit 3f12ed5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,14 @@ jobs:
- run: |
pip install pipenv
pipenv update -d
pipenv run nuitka --standalone --plugin-enable=pyside6 --macos-create-app-bundle --assume-yes-for-downloads FluentPython
pipenv run nuitka --standalone --plugin-enable=pyside6 --macos-create-app-bundle --assume-yes-for-downloads --windows-icon-from-ico=./icon.ico --macos-app-icon FluentPython
- name: Fix executable permissions (macOS)
if: ${{ runner.os == 'macOS' }}
run: |
chmod +x FluentPython.app/Contents/MacOS/*
# Uploads artifact
- name: Upload Artifacts (Win/Linux)
uses: actions/upload-artifact@v4
Expand Down
Binary file added favicon.ico
Binary file not shown.

0 comments on commit 3f12ed5

Please sign in to comment.