删除 .github/workflows/build-exe.yml

This commit is contained in:
2026-03-15 03:05:46 +08:00
Unverified
parent 18b5ba9c43
commit cf93a1ce59

View File

@@ -1,33 +0,0 @@
name: Build Windows EXE
on:
push:
branches: ["main"]
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Install deps
run: |
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