We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34e9e4a commit affdfdfCopy full SHA for affdfdf
.github/workflows/rust.yml
@@ -119,8 +119,16 @@ jobs:
119
- uses: actions/setup-node@v4
120
with:
121
node-version: lts/*
122
+
123
+ - name: Restore Tauri CLI
124
+ id: cache-tauri
125
+ uses: actions/cache@v4
126
+ with:
127
+ path: /Users/runner/.cargo
128
+ key: tauri-cli-MacOS
129
130
- name: Install Tauri CLI
131
+ if: steps.cache-tauri.outputs.cache-hit != 'true'
132
run: cargo install tauri-cli --version "^2.0.0" --locked
133
134
- uses: actions/checkout@v4
0 commit comments