From 0f013b236ff2f91eca41c0f7202c429a17aaddce Mon Sep 17 00:00:00 2001 From: LunaChocken Date: Sat, 7 Jun 2025 18:01:00 +0100 Subject: [PATCH] Updoot --- .gitea/workflows/pyinstaller.yml | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/pyinstaller.yml b/.gitea/workflows/pyinstaller.yml index 3dbf8a9..7646e12 100644 --- a/.gitea/workflows/pyinstaller.yml +++ b/.gitea/workflows/pyinstaller.yml @@ -1,6 +1,15 @@ -steps: -- uses: actions/checkout@v4 -- uses: actions/setup-python@v5 - with: - python-version: '3.13' -- run: python my_script.py \ No newline at end of file +- name: PyInstaller Action + uses: Martin005/pyinstaller-action@v1.2.0 + + jobs: + pyinstaller-build: + runs-on: ubuntu-latest + steps: + - name: Create Executable + uses: sayyid5416/pyinstaller@v1 + with: + python_ver: '3.6' + spec: 'src/build.spec' + requirements: 'src/requirements.txt' + upload_exe_with_name: 'My executable' + options: --onefile, --name "My App", --windowed, \ No newline at end of file