We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4ad993 commit 5e8168aCopy full SHA for 5e8168a
1 file changed
.github/workflows/build-ios-app.yml
@@ -22,6 +22,8 @@ jobs:
22
steps:
23
- name: Checkout repository
24
uses: actions/checkout@v4
25
+ with:
26
+ fetch-depth: 1
27
28
- name: Setup Ruby
29
uses: ruby/setup-ruby@v1
@@ -40,18 +42,12 @@ jobs:
40
42
with:
41
43
targets: aarch64-apple-ios
44
- - name: Cache Cargo
- uses: actions/cache@v4
45
+ - name: Cache Rust
46
+ uses: Swatinem/rust-cache@v2
47
- path: |
- ~/.cargo/bin/
48
- ~/.cargo/registry/index/
49
- ~/.cargo/registry/cache/
50
- ~/.cargo/git/db/
51
- src-tauri/target/
52
- key: ${{ runner.os }}-cargo-ios-${{ hashFiles('**/Cargo.lock') }}
53
- restore-keys: |
54
- ${{ runner.os }}-cargo-ios-
+ workspaces: src-tauri -> target
+ cache-targets: true
+ cache-on-failure: true
55
56
- name: Install npm dependencies
57
run: npm ci
0 commit comments