Skip to content

Commit 550bd12

Browse files
release workflow
1 parent 373bf6b commit 550bd12

File tree

3 files changed

+45
-46
lines changed

3 files changed

+45
-46
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
- name: Build executable
3131
run: |
32-
pipenv run pyinstaller --onefile pyinstaller.spec
32+
pipenv run pyinstaller app.spec
3333
env:
3434
DISPLAY: ":99.0"
3535

app.spec

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# -*- mode: python ; coding: utf-8 -*-
2+
3+
4+
a = Analysis(
5+
['app.py'],
6+
pathex=[],
7+
binaries=[],
8+
datas=[('app.css', '.'),
9+
('exercises', 'exercises'),
10+
('exercises_test_suites', 'exercises_test_suites'),],
11+
hiddenimports=[
12+
'textual',
13+
'textual.widgets',
14+
'textual.widgets._markdown_viewer',
15+
],
16+
hookspath=[],
17+
hooksconfig={},
18+
runtime_hooks=[],
19+
excludes=[],
20+
noarchive=False,
21+
optimize=0,
22+
)
23+
pyz = PYZ(a.pure)
24+
25+
exe = EXE(
26+
pyz,
27+
a.scripts,
28+
a.binaries,
29+
a.datas,
30+
[],
31+
name='sissues',
32+
debug=False,
33+
bootloader_ignore_signals=False,
34+
strip=False,
35+
upx=True,
36+
upx_exclude=[],
37+
runtime_tmpdir=None,
38+
console=True,
39+
disable_windowed_traceback=False,
40+
argv_emulation=False,
41+
target_arch=None,
42+
codesign_identity=None,
43+
entitlements_file=None,
44+
)

pyinstaller.spec

Lines changed: 0 additions & 45 deletions
This file was deleted.

0 commit comments

Comments
 (0)