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 2dd7b94 commit eca62c1Copy full SHA for eca62c1
.github/workflows/main.yml
@@ -22,6 +22,10 @@ jobs:
22
run: |
23
sudo apt-get update
24
sudo apt install python3-tk python3-dev python3-setuptools tcl
25
+
26
+ - name: Install tk on ubuntu
27
+ if: ${{ matrix.config.os == 'windows-2019'}}
28
+ run: pip install pywin32
29
30
- name: Checkout code
31
uses: actions/checkout@v3
@@ -36,8 +40,7 @@ jobs:
36
40
python -m pip install --upgrade pip
37
41
pip install -r requirements.txt
38
42
pip install pyinstaller
39
- pip install pillow
- pip install pywin32
43
+ pip install pillow
44
45
- name: Build with pyinstaller for ${{ matrix.config.os }}
46
run: pyinstaller scripts/main.py --onefile --noconsole --icon=img/icon.ico --name=PyHolofotes
0 commit comments