We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb9218f commit 647c110Copy full SHA for 647c110
1 file changed
.github/workflows/ci.yml
@@ -81,6 +81,9 @@ jobs:
81
pyinstaller -F --windowed --name=IndexRipper \
82
--hidden-import tkinter --hidden-import tkinter.ttk --icon=app.png index_ripper.py
83
[ -f dist/IndexRipper ] && rm -f dist/IndexRipper || true
84
+ # 確保執行權限與進行 ad-hoc 簽章(不需證書)
85
+ chmod +x "dist/IndexRipper.app/Contents/MacOS/IndexRipper" || true
86
+ codesign --force --deep --sign - "dist/IndexRipper.app" || true
87
88
- name: Build (Linux)
89
if: matrix.os == 'ubuntu-latest'
0 commit comments