File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change 32
32
with :
33
33
submodules : " recursive"
34
34
- name : pyinstaller
35
- run : " pip install PyInstaller"
35
+ run : |
36
+ pip install PyInstaller
37
+ pip install requests
36
38
- name : build
37
- run : pyinstaller scripts\pmbuild.py --onefile -i NONE --distpath build/dist/ --workpath build/work/
39
+ run : pyinstaller scripts\pmbuild.py --onefile -i NONE --distpath build/dist/ --workpath build/work/ --hiddenimport=requests
38
40
- name : zip
39
41
run : Compress-Archive -LiteralPath build/dist -DestinationPath build/Windows-x64.zip
40
42
- name : upload
57
59
with :
58
60
submodules : " recursive"
59
61
- name : pyinstaller
60
- run : " python3 -m pip install PyInstaller"
62
+ run : |
63
+ python3 -m pip install PyInstaller
64
+ python3 -m pip install requests
61
65
- name : build
62
- run : python3 -m PyInstaller scripts/pmbuild.py -y --onefile -i NONE --distpath build/dist/ --workpath build/work/
66
+ run : python3 -m PyInstaller scripts/pmbuild.py -y --onefile -i NONE --distpath build/dist/ --workpath build/work/ --hiddenimport=requests
63
67
- name : zip
64
68
run : zip -r build/macOS-x64.zip build/dist
65
69
- name : upload
You can’t perform that action at this time.
0 commit comments