Skip to content

Commit 8b6f431

Browse files
committed
build: add crossplatform pyInstaller builds (first attempt)
Signed-off-by: Stephen L. <LRQ3000@gmail.com>
1 parent 2b8988c commit 8b6f431

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/pyinstaller.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Crossplatform pyInstaller builds using GitHub Actions
2+
3+
name: pyinstaller
4+
5+
jobs:
6+
pyinstaller-build:
7+
runs-on: [ ubuntu-latest, windows-latest, macos-latest ]
8+
steps:
9+
- name: Create Executable
10+
uses: sayyid5416/pyinstaller@v1
11+
with:
12+
python_ver: '*'
13+
#spec: 'src/build.spec'
14+
#requirements: 'src/requirements.txt'
15+
upload_exe_with_name: 'webactogram'
16+
options: --onefile, --name "webactogram", --windowed,

0 commit comments

Comments
 (0)