We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7808981 commit 0d0ffd4Copy full SHA for 0d0ffd4
1 file changed
.github/workflows/ci.yml
@@ -28,6 +28,18 @@ jobs:
28
echo "CARGO_HOME=$HOME/.cargo" >> $GITHUB_ENV
29
echo "RUSTUP_HOME=$HOME/.rustup" >> $GITHUB_ENV
30
31
+ - name: Cache Cargo dependencies
32
+ uses: actions/cache@v4
33
+ with:
34
+ path: |
35
+ ~/.cargo/registry/index
36
+ ~/.cargo/registry/cache
37
+ ~/.cargo/git/db
38
+ target
39
+ key: ${{ runner.os }}-cargo-${{ matrix.toolchain }}-${{ hashFiles('**/Cargo.lock') }}
40
+ restore-keys: |
41
+ ${{ runner.os }}-cargo-${{ matrix.toolchain }}-
42
+
43
- name: Build frontend
44
working-directory: rustmail_panel
45
run: trunk build --release --dist ../rustmail/static --config Trunk.toml
0 commit comments