Update .gitea/workflows/pyinstaller.yml
Versatile PyInstaller / pyinstaller-build (push) Has been cancelled

This commit is contained in:
2025-06-07 17:17:13 +00:00
parent 6be402bf77
commit 656b3c8ac8
+8 -6
View File
@@ -1,5 +1,5 @@
name: PyInstaller Action name: Versatile PyInstaller
uses: Martin005/pyinstaller-action@v1.2.0 uses: sayyid5416/pyinstaller@v1.8.0
on: on:
push: push:
pull_request: pull_request:
@@ -16,13 +16,15 @@ on:
- debug - debug
jobs: jobs:
pyinstaller-build: pyinstaller-build:
runs-on: ubuntu-latest runs-on: #<windows-latest / ubuntu-latest / ..... etc>
steps: steps:
- name: Create Executable - name: Create Executable
uses: sayyid5416/pyinstaller@v1 uses: sayyid5416/pyinstaller@v1
with: with:
python_ver: '3.14' python_ver: '3.6'
pyinstaller_ver: '==5.13.2'
spec: 'src/build.spec' spec: 'src/build.spec'
requirements: 'src/requirements.txt' requirements: 'src/requirements.txt'
upload_exe_with_name: 'SteamPathCLI' upload_exe_with_name: 'steamPathCLI'
options: --onefile, --name "SteamPathCI", --windowed, options: --onefile, --name "SteamPathsCLI", --windowed
spec_options: # any custom arguments you want like: `--debug`