We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de417ea commit ad6157dCopy full SHA for ad6157d
1 file changed
.github/workflows/ci.yml
@@ -19,9 +19,16 @@ jobs:
19
rust-build-check:
20
name: Rust Build Check
21
runs-on: ubuntu-latest
22
+ needs: frontend-build
23
steps:
24
- uses: actions/checkout@v4
25
26
+ - name: Download frontend build artifacts
27
+ uses: actions/download-artifact@v4
28
+ with:
29
+ name: frontend-dist
30
+ path: dist
31
+
32
- name: Install Linux system dependencies (Tauri)
33
run: |
34
sudo apt-get update
@@ -74,3 +81,10 @@ jobs:
74
81
75
82
- name: Build web UI
76
83
run: npm run build:web
84
85
+ - name: Upload frontend build artifacts
86
+ uses: actions/upload-artifact@v4
87
88
89
90
+ retention-days: 1
0 commit comments