There was an error while loading. Please reload this page.
1 parent fb6450e commit 5cc6966Copy full SHA for 5cc6966
1 file changed
.github/workflows/release.yml
@@ -53,6 +53,16 @@ jobs:
53
uses: tauri-apps/tauri-action@v0
54
env:
55
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
66
with:
67
projectPath: apps/desktop
68
tagName: ${{ github.ref_name }}
0 commit comments