Files
Zordon/.github/workflows/pyinstaller.yml
2024-08-23 20:07:17 -05:00

23 lines
451 B
YAML

name: Create Executables
on:
workflow_dispatch:
release:
types:
- created
push:
branches:
- github-actions
jobs:
pyinstaller-build:
runs-on: windows-latest
steps:
- name: Create Executable (Windows)
uses: sayyid5416/pyinstaller@v1
with:
python_ver: '3.11'
spec: 'main.spec'
requirements: 'requirements.txt'
upload_exe_with_name: 'Zordon'