We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9fc2c57 commit 2e44496Copy full SHA for 2e44496
1 file changed
.github/workflows/build.yml
@@ -16,7 +16,7 @@ jobs:
16
uses: actions/setup-python@v5
17
with:
18
python-version: '3.12'
19
- cache: 'pip' # ここはGitHub標準の設定なのでOKです
+ cache: 'pip'
20
21
- name: Install dependencies
22
run: |
@@ -28,14 +28,14 @@ jobs:
28
29
nuitka-version: main
30
script-name: VeloFetch.py
31
+ # --- 重複を避けるための修正点 ---
32
mode: app
- standalone: true
33
macos-create-app-bundle: true
34
disable-console: true
35
+ # standalone: true は削除(mode: app に含まれるため)
36
+ # ------------------------------
37
enable-plugins: tk-inter
- # macOS用のライブラリパス
38
include-data-dir: ${{ env.pythonLocation }}/lib/python3.12/site-packages/customtkinter=customtkinter
- # --- cache: true を削除しました ---
39
40
- name: Upload macOS App
41
uses: actions/upload-artifact@v4
0 commit comments