From bac7bdd45364bb9f97d5b90556164df1b71d8fed Mon Sep 17 00:00:00 2001 From: WorldTeacher Date: Thu, 7 Nov 2024 08:43:38 +0100 Subject: [PATCH] Delete .gitea/workflows/windows_build.yaml unable to get stuff working, switching to using updater instead --- .gitea/workflows/windows_build.yaml | 32 ----------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .gitea/workflows/windows_build.yaml diff --git a/.gitea/workflows/windows_build.yaml b/.gitea/workflows/windows_build.yaml deleted file mode 100644 index a23897d..0000000 --- a/.gitea/workflows/windows_build.yaml +++ /dev/null @@ -1,32 +0,0 @@ -name: Build Windows Executable - -on: - push: - branches: - - main - -jobs: - build: - runs-on: windows-latest - steps: - - uses: actions/checkout@v2 - - name: Set up Python - uses: actions/setup-python@v2 - with: - python-version: 3.12.5 - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements.txt - pip install pyinstaller - - # Step 4: Build the executable using PyInstaller - - name: Build with PyInstaller - run: | - yinstaller --noconfirm --onedir --windowed --icon "icons/icon.ico" --name "LibrarySystem" --clean --add-data "config;config/" --add-data "icons;icons/" "main.py" - # Step 5: Upload the artifact (the built executable) - - name: Upload Build Artifacts - uses: actions/upload-artifact@v3 - with: - name: LibrarySystemExecutable - path: ./dist/LibrarySystem \ No newline at end of file