Skip to content

Commit

Permalink
release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Eliran-Turgeman committed Jul 15, 2024
1 parent 373bf6b commit 550bd12
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 46 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

- name: Build executable
run: |
pipenv run pyinstaller --onefile pyinstaller.spec
pipenv run pyinstaller app.spec
env:
DISPLAY: ":99.0"

Expand Down
44 changes: 44 additions & 0 deletions app.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# -*- mode: python ; coding: utf-8 -*-


a = Analysis(
['app.py'],
pathex=[],
binaries=[],
datas=[('app.css', '.'),
('exercises', 'exercises'),
('exercises_test_suites', 'exercises_test_suites'),],
hiddenimports=[
'textual',
'textual.widgets',
'textual.widgets._markdown_viewer',
],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
noarchive=False,
optimize=0,
)
pyz = PYZ(a.pure)

exe = EXE(
pyz,
a.scripts,
a.binaries,
a.datas,
[],
name='sissues',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=True,
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
)
45 changes: 0 additions & 45 deletions pyinstaller.spec

This file was deleted.

0 comments on commit 550bd12

Please sign in to comment.