From 479fc155f75dc7ec2a6c1137f0b6e5f920c54dd0 Mon Sep 17 00:00:00 2001 From: Hsdi Date: Sun, 15 Mar 2026 11:15:17 +0800 Subject: [PATCH] =?UTF-8?q?=E9=87=8D=E6=96=B0=E6=9E=84=E5=BB=BA=E4=BB=A3?= =?UTF-8?q?=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build-exe.yml | 39 --------------------------------- 1 file changed, 39 deletions(-) diff --git a/.github/workflows/build-exe.yml b/.github/workflows/build-exe.yml index 3a87994..e69de29 100644 --- a/.github/workflows/build-exe.yml +++ b/.github/workflows/build-exe.yml @@ -1,39 +0,0 @@ -name: Build Windows EXE - -on: - push: - branches: ["main"] - workflow_dispatch: - -jobs: - build: - runs-on: windows - defaults: - run: - shell: powershell - - steps: - - name: Checkout repository - uses: https://github.com/actions/checkout@v4 - - - name: Set up Python 3.9.1 - uses: https://github.com/actions/setup-python@v5 - with: - python-version: "3.9.1" - architecture: "x64" - - - name: Install dependencies - run: | - python -m pip install --upgrade pip - python -m pip install pyinstaller keyboard pywin32 - - - name: Build EXE - run: | - python -m PyInstaller --clean --noconfirm --onefile --windowed --name Shortcut_Sync_PotPlayer main.py - - - name: Upload artifact - uses: https://github.com/actions/upload-artifact@v4 - with: - name: Shortcut_Sync_PotPlayer-windows - path: dist/Shortcut_Sync_PotPlayer.exe - if-no-files-found: error