From 190a08805bfe70322652dd42e9d3bc225c1d3c14 Mon Sep 17 00:00:00 2001 From: miu <205594122@qq.com> Date: Sun, 15 Mar 2026 02:54:15 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20.github/workflows/build-ex?= =?UTF-8?q?e.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build-exe.yml | 30 +++++++++++++++++------------- 1 file changed, 17 insertions(+), 13 deletions(-) diff --git a/.github/workflows/build-exe.yml b/.github/workflows/build-exe.yml index b82722b..8f579b9 100644 --- a/.github/workflows/build-exe.yml +++ b/.github/workflows/build-exe.yml @@ -2,31 +2,35 @@ name: Build Windows EXE on: push: - branches: [ "main" ] - workflow_dispatch: # 允许手动触发 + branches: ["main"] + workflow_dispatch: jobs: build: runs-on: windows-latest steps: - - name: Setup Node - uses: actions/setup-node@v4 - with: - node-version: 20 - - name: Checkout code + - name: Checkout uses: actions/checkout@v4 - - name: Set up Python + - name: Setup Python uses: actions/setup-python@v5 with: - python-version: '3.9.1' # 建议指定版本,确保稳定性 - cache: 'pip' # 自动缓存依赖,加快下次构建速度 + python-version: "3.9" - - name: Install dependencies + - name: Install deps run: | - python -m pip install --upgrade pip - python -m pip install pyinstaller keyboard pywin32 + pip install pyinstaller keyboard pywin32 + + - name: Build EXE + run: | + pyinstaller --onefile --windowed --name Shortcut_Sync_PotPlayer main.py + + - name: Upload + uses: actions/upload-artifact@v4 + with: + name: exe + path: dist/Shortcut_Sync_PotPlayer.exe - name: Build with PyInstaller run: |