Skip to content

Commit

Permalink
build: add crossplatform pyInstaller builds (first attempt)
Browse files Browse the repository at this point in the history
Signed-off-by: Stephen L. <LRQ3000@gmail.com>
  • Loading branch information
lrq3000 committed Jan 21, 2024
1 parent 2b8988c commit 8b6f431
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/pyinstaller.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Crossplatform pyInstaller builds using GitHub Actions

name: pyinstaller

jobs:
pyinstaller-build:
runs-on: [ ubuntu-latest, windows-latest, macos-latest ]
steps:
- name: Create Executable
uses: sayyid5416/pyinstaller@v1
with:
python_ver: '*'
#spec: 'src/build.spec'
#requirements: 'src/requirements.txt'
upload_exe_with_name: 'webactogram'
options: --onefile, --name "webactogram", --windowed,

0 comments on commit 8b6f431

Please sign in to comment.