From a19db9fcf7eb490078def27522dccbcae2dd30bf Mon Sep 17 00:00:00 2001 From: Brett Date: Fri, 23 Aug 2024 19:51:56 -0500 Subject: [PATCH] Fix issue with create_executables.yml --- .github/workflows/create_executables.yml | 26 +++++++++++++++++++++--- 1 file changed, 23 insertions(+), 3 deletions(-) diff --git a/.github/workflows/create_executables.yml b/.github/workflows/create_executables.yml index 1fa5d48..8b2a280 100644 --- a/.github/workflows/create_executables.yml +++ b/.github/workflows/create_executables.yml @@ -6,10 +6,30 @@ on: - types: [created] jobs: - pyinstaller-build: - runs-on: [ubuntu-latest, windows-latest, macOS-latest] + pyinstaller-build-windows: + runs-on: windows-latest steps: - - name: Create Executables + - name: Create Executables (Windows) + uses: sayyid5416/pyinstaller@v1 + with: + python_ver: '3.11' + spec: 'main.spec' + requirements: 'requirements.txt' + upload_exe_with_name: 'Zordon' + pyinstaller-build-linux: + runs-on: ubuntu-latest + steps: + - name: Create Executables (Linux) + uses: sayyid5416/pyinstaller@v1 + with: + python_ver: '3.11' + spec: 'main.spec' + requirements: 'requirements.txt' + upload_exe_with_name: 'Zordon' + pyinstaller-build-macos: + runs-on: macos-latest + steps: + - name: Create Executables (macOS) uses: sayyid5416/pyinstaller@v1 with: python_ver: '3.11'