From 9f45a02f135c9e28faa8194bed9c3eb709e9a838 Mon Sep 17 00:00:00 2001 From: Quality App Developer Date: Thu, 5 Feb 2026 16:50:06 +0200 Subject: [PATCH] Remove GitHub Actions workflow --- .github/workflows/build-windows.yml | 55 ----------------------------- 1 file changed, 55 deletions(-) delete mode 100644 .github/workflows/build-windows.yml diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml deleted file mode 100644 index 85e4b00..0000000 --- a/.github/workflows/build-windows.yml +++ /dev/null @@ -1,55 +0,0 @@ -name: Build Windows Executable - -on: - push: - branches: [ main, master, develop ] - pull_request: - branches: [ main, master, develop ] - -jobs: - build-windows: - runs-on: windows-latest - timeout-minutes: 45 - - strategy: - matrix: - python-version: ['3.11'] - - steps: - - uses: actions/checkout@v4 - - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - cache: 'pip' - - - name: Install dependencies - run: | - python -m pip install --upgrade pip setuptools wheel - pip install python-barcode pillow reportlab kivy==2.2.1 pyinstaller==6.1.0 - - - name: Build executable with PyInstaller - run: | - pyinstaller label_printer_gui.py --onedir --windowed --name=LabelPrinter --distpath=./dist --workpath=./build --hidden-import=kivy --hidden-import=PIL --hidden-import=barcode --hidden-import=reportlab --hidden-import=print_label --hidden-import=print_label_pdf -y --noupx - - - name: Create single executable zip - run: | - cd dist - 7z a -r LabelPrinter.zip LabelPrinter/ - shell: powershell - - - name: Upload Windows executable as artifact - uses: actions/upload-artifact@v4 - with: - name: LabelPrinter-Windows - path: dist/LabelPrinter.zip - retention-days: 30 - - - name: Create Release and Upload - if: startsWith(github.ref, 'refs/tags/') - uses: softprops/action-gh-release@v1 - with: - files: dist/LabelPrinter.exe - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}