Update pyinstaller workflow

This commit is contained in:
oldnapalm
2022-12-30 11:23:53 -03:00
parent 2cfad25c4c
commit db71d843af
2 changed files with 9 additions and 0 deletions
+8
View File
@@ -1,3 +1,5 @@
name: pyinstaller
on:
push:
@@ -13,6 +15,12 @@ jobs:
with:
python-version: '3.10'
- uses: engineerd/configurator@v0.0.8
with:
name: "upx.exe"
url: "https://github.com/upx/upx/releases/download/v4.0.1/upx-4.0.1-win64.zip"
pathInArchive: "upx-4.0.1-win64/upx.exe"
- run: pip install flask flask_sqlalchemy flask-login pyjwt gevent protobuf pycryptodome stravalib git+https://github.com/oldnapalm/garmin-uploader.git dnspython pyinstaller
- run: pyinstaller standalone.spec
+1
View File
@@ -33,6 +33,7 @@ exe = EXE(pyz,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=['greenlet\*.pyd'],
runtime_tmpdir=None,
console=True )