Files
SteamPathCLI/.gitea/workflows/pyinstaller.yml
T
LunaChocken 656b3c8ac8
Versatile PyInstaller / pyinstaller-build (push) Has been cancelled
Update .gitea/workflows/pyinstaller.yml
2025-06-07 17:17:13 +00:00

30 lines
903 B
YAML

name: Versatile PyInstaller
uses: sayyid5416/pyinstaller@v1.8.0
on:
push:
pull_request:
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
type: choice
options:
- info
- warning
- debug
jobs:
pyinstaller-build:
runs-on: #<windows-latest / ubuntu-latest / ..... etc>
steps:
- name: Create Executable
uses: sayyid5416/pyinstaller@v1
with:
python_ver: '3.6'
pyinstaller_ver: '==5.13.2'
spec: 'src/build.spec'
requirements: 'src/requirements.txt'
upload_exe_with_name: 'steamPathCLI'
options: --onefile, --name "SteamPathsCLI", --windowed
spec_options: # any custom arguments you want like: `--debug`