From 1f22e82614a3c04002636701c44c177766c7751c Mon Sep 17 00:00:00 2001 From: korn20123 Date: Wed, 11 Feb 2026 15:37:17 +0100 Subject: [PATCH] fixed the runner --- .gitea/workflows/build.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index acd34bd..47a0522 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -7,23 +7,23 @@ jobs: steps: - name: Checkout Code uses: actions/checkout@v4 - + - name: Setup Python uses: actions/setup-python@v4 with: python-version: '3.11' - + - name: Install Dependencies run: | + python -m pip install --upgrade pip pip install -r requirements.txt pip install pyinstaller - + - name: Build with PyInstaller - run: | - pyinstaller --onefile --name myapp main.py - + run: pyinstaller --onefile --name myapp main.py + - name: Upload Executable uses: actions/upload-artifact@v3 with: name: myapp-linux - path: dist/myapp \ No newline at end of file + path: dist/myapp