ci: add Gitea Actions workflow for Windows EXE build & release
This commit is contained in:
@@ -0,0 +1,58 @@
|
||||
# fcco-Converter.spec
|
||||
# Für lokalen Build auf Windows: pyinstaller fcco-Converter.spec
|
||||
|
||||
block_cipher = None
|
||||
|
||||
a = Analysis(
|
||||
['main.py'],
|
||||
pathex=[],
|
||||
binaries=[],
|
||||
datas=[
|
||||
('icon.ico', '.'), # Icon miteinbinden
|
||||
('settings.json', '.'), # Standard-Settings
|
||||
],
|
||||
hiddenimports=[
|
||||
'mutagen',
|
||||
'mutagen.easyid3',
|
||||
'mutagen.id3',
|
||||
'pydub',
|
||||
'tkinter',
|
||||
'tkinter.ttk',
|
||||
'tkinter.filedialog',
|
||||
'tkinter.messagebox',
|
||||
'tkinter.simpledialog',
|
||||
],
|
||||
hookspath=[],
|
||||
hooksconfig={},
|
||||
runtime_hooks=[],
|
||||
excludes=[],
|
||||
win_no_prefer_redirects=False,
|
||||
win_private_assemblies=False,
|
||||
cipher=block_cipher,
|
||||
noarchive=False,
|
||||
)
|
||||
|
||||
pyz = PYZ(a.pure, a.zlib, cipher=block_cipher)
|
||||
|
||||
exe = EXE(
|
||||
pyz,
|
||||
a.scripts,
|
||||
a.binaries,
|
||||
a.zipfiles,
|
||||
a.datas,
|
||||
[],
|
||||
name='fcco-Converter',
|
||||
debug=False,
|
||||
bootloader_ignore_signals=False,
|
||||
strip=False,
|
||||
upx=True,
|
||||
upx_exclude=[],
|
||||
runtime_tmpdir=None,
|
||||
console=False, # Kein Konsolenfenster (GUI-App)
|
||||
disable_windowed_traceback=False,
|
||||
argv_emulation=False,
|
||||
target_arch=None,
|
||||
codesign_identity=None,
|
||||
entitlements_file=None,
|
||||
icon='icon.ico',
|
||||
)
|
||||
Reference in New Issue
Block a user