Skip to content

Commit b3f3259

Browse files
committed
Publish
1 parent f25d3d2 commit b3f3259

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/ci.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,16 @@ jobs:
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

0 commit comments

Comments
 (0)