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'