Skip to content

Commit 5cc6966

Browse files
committed
chore: debug sig file generation
1 parent fb6450e commit 5cc6966

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,16 @@ jobs:
5353
uses: tauri-apps/tauri-action@v0
5454
env:
5555
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
56+
57+
- name: Check for sig files
58+
if: always()
59+
run: |
60+
echo "=== .sig files ==="
61+
find target/release/bundle -name "*.sig" 2>/dev/null || echo "none"
62+
echo "=== latest.json ==="
63+
find target/release/bundle -name "latest.json" 2>/dev/null || echo "none"
64+
echo "=== all bundle files ==="
65+
find target/release/bundle -maxdepth 3 -type f 2>/dev/null
5666
with:
5767
projectPath: apps/desktop
5868
tagName: ${{ github.ref_name }}

0 commit comments

Comments
 (0)