Compare commits
36
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
65e9670a78 | ||
|
|
c7918a7492 | ||
|
|
0152340b65 | ||
|
|
8a13a098da | ||
|
|
3646908a00 | ||
|
|
07c586c1d5 | ||
|
|
8022a69d61 | ||
|
|
dc264f249b | ||
|
|
cb555293e4 | ||
|
|
233ceaca2e | ||
|
|
b4dd7492c2 | ||
|
|
f915340969 | ||
|
|
9eb173bdfc | ||
|
|
d55269c1f0 | ||
|
|
8b41e59e1d | ||
|
|
4c8cfb1177 | ||
|
|
9cf6198cbf | ||
|
|
43868f576e | ||
|
|
bd59fbe7e7 | ||
|
|
e989c26715 | ||
|
|
3725893237 | ||
|
|
d9af7cadf3 | ||
|
|
d4627c8aba | ||
|
|
e59bc51fca | ||
|
|
14e49f1b19 | ||
|
|
7f7c172abb | ||
|
|
479fc155f7 | ||
|
|
4973716368 | ||
|
|
38c3bf33ab | ||
|
|
84de76c853 | ||
|
|
87f8a4cd91 | ||
|
|
cf93a1ce59 | ||
|
|
789b02ee27 | ||
|
|
18b5ba9c43 | ||
|
|
190a08805b | ||
|
|
e85e2c7aa9 |
@@ -1,35 +0,0 @@
|
|||||||
name: Build Windows EXE with Full Image
|
|
||||||
on: [push]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
runs-on: Ubuntu_docker_act
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Wine
|
|
||||||
run: |
|
|
||||||
wine --version # 安装后验证
|
|
||||||
|
|
||||||
- name: Install Windows dependencies using Wine Python
|
|
||||||
run: |
|
|
||||||
# 使用 Wine 运行 Windows 版本的 Python
|
|
||||||
wine python -m pip install --upgrade pip
|
|
||||||
wine python -m pip install pyinstaller keyboard pywin32
|
|
||||||
|
|
||||||
# 环境已预装,直接验证
|
|
||||||
- name: Verify tools
|
|
||||||
run: |
|
|
||||||
node --version
|
|
||||||
wine python --version
|
|
||||||
wine --version # 确认 wine 是否存在,full 镜像很可能包含
|
|
||||||
|
|
||||||
- name: Build EXE using Wine Python
|
|
||||||
run: |
|
|
||||||
wine python -m PyInstaller --onefile --windowed --name Shortcut_Sync_PotPlayer main.py
|
|
||||||
|
|
||||||
- name: Upload Artifact
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: Shortcut_Sync_PotPlayer
|
|
||||||
path: dist/Shortcut_Sync_PotPlayer.exe
|
|
||||||
Reference in New Issue
Block a user