File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change 8989 with :
9090 # Use the Tauri CLI directly; the action appends 'build' automatically.
9191 tauriScript : yarn tauri
92+ # Disable updater.json handling and any release uploads for PR previews.
93+ includeUpdaterJson : false
94+
95+ - name : Inspect Tauri bundle output
96+ if : always()
97+ run : |
98+ echo "Listing bundle directory (if present):"
99+ ls -la src-tauri/target/release || true
100+ ls -la src-tauri/target/release/bundle || true
101+ find src-tauri/target/release/bundle -maxdepth 3 -type f -print || true
92102
93103 - name : Upload Linux installers
94104 uses : actions/upload-artifact@v4
@@ -100,6 +110,15 @@ jobs:
100110 if-no-files-found : warn
101111 retention-days : 14
102112
113+ - name : Upload bundle folder (fallback)
114+ if : always()
115+ uses : actions/upload-artifact@v4
116+ with :
117+ name : linux-bundle-raw
118+ path : src-tauri/target/release/bundle
119+ if-no-files-found : warn
120+ retention-days : 7
121+
103122 docker-build :
104123 name : Docker build (optional)
105124 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments