Skip to content
This repository was archived by the owner on Jul 13, 2025. It is now read-only.

Commit 4ca0bcb

Browse files
committed
try -no-pie
1 parent f1f943b commit 4ca0bcb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/release.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ jobs:
3131
3232
- name: Run Pyinstaller
3333
run: |
34-
poetry run pyinstaller --clean -w --add-data "data/style.css:./data" --exclude-module=pytest keyboard.py
34+
CC="gcc -no-pie" python waf configure all
35+
poetry run pyinstaller --clean --onefile -w --add-data "data/style.css:./data" --exclude-module=pytest keyboard.py
3536
mv ./dist/keyboard ./dist/keyboard-linux-amd64
3637
3738
- name: Store Dist

0 commit comments

Comments
 (0)