Skip to content

Commit 364673c

Browse files
committed
ci: Debug artifact sig file locations.
1 parent 8007add commit 364673c

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,9 @@ jobs:
109109
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}
110110
TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }}
111111

112+
- name: List bundle output (debug)
113+
run: find src-tauri/target/release/bundle -type f | sort
114+
112115
- name: Sign Linux artifacts
113116
env:
114117
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
@@ -176,6 +179,9 @@ jobs:
176179
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}
177180
TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }}
178181

182+
- name: List bundle output (debug)
183+
run: find src-tauri/target/universal-apple-darwin/release/bundle -type f | sort
184+
179185
- name: Upload macOS artifacts
180186
uses: actions/upload-artifact@v4
181187
with:
@@ -226,6 +232,10 @@ jobs:
226232
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}
227233
TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }}
228234

235+
- name: List bundle output (debug)
236+
shell: bash
237+
run: find src-tauri/target/release/bundle -type f | sort
238+
229239
- name: Compute installer hash
230240
id: hash
231241
shell: bash
@@ -274,6 +284,15 @@ jobs:
274284
name: pomotroid-windows-x64
275285
path: dist/windows
276286

287+
- name: List downloaded artifacts (debug)
288+
run: |
289+
echo "=== dist/linux ==="
290+
find dist/linux -type f | sort
291+
echo "=== dist/macos ==="
292+
find dist/macos -type f | sort
293+
echo "=== dist/windows ==="
294+
find dist/windows -type f | sort
295+
277296
- name: Generate latest.json updater manifest
278297
run: |
279298
VERSION="${{ needs.changelog.outputs.version }}"

0 commit comments

Comments
 (0)