We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d05246f commit d6058beCopy full SHA for d6058be
.github/workflows/build-release.yml
@@ -16,10 +16,14 @@ jobs:
16
with:
17
python-version: '3.6'
18
architecture: x64
19
+ - name: Create and activate venv
20
+ run: |
21
+ python -m venv venv
22
+ source venv/bin/activate
23
- name: Install dependencies
24
run: pip install -r requirements-dev.txt
25
- name: Create app with pyinstaller
- run: pyinstaller --windowed --name "Study Planner" --icon icons/icon_square.png main.py
26
+ run: pyinstaller --windowed --name "Study Planner" --add-binary 'venv/lib/python3.6/site-packages/pymediainfo/libmediainfo.0.dylib:.' --icon icons/icon_square.png main.py
27
- name: Compress app to archive
28
run: |
29
cd dist
0 commit comments