Skip to content

Commit edda54b

Browse files
committed
add more caching
1 parent 2d360d3 commit edda54b

File tree

3 files changed

+23
-4
lines changed

3 files changed

+23
-4
lines changed

.github/workflows/linux-build.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
name: Build Tauri AppImage
2-
description: Build Tauri v2 application as Linux AppImage
32

43
on:
54
push:
@@ -22,6 +21,17 @@ jobs:
2221
- name: Install Rust
2322
uses: dtolnay/rust-toolchain@stable
2423

24+
- name: Cache Rust dependencies
25+
uses: actions/cache@v4
26+
with:
27+
path: |
28+
~/.cargo/registry
29+
~/.cargo/git
30+
src-tauri/target
31+
key: ${{ runner.os }}-cargo-${{ hashFiles('src-tauri/Cargo.lock') }}
32+
restore-keys: |
33+
${{ runner.os }}-cargo-
34+
2535
- name: Install system dependencies
2636
shell: bash
2737
run: |

.github/workflows/windows-build.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
name: Build Tauri Windows App
2-
description: Build Tauri v2 application for Windows
32

43
on:
54
push:
@@ -22,6 +21,17 @@ jobs:
2221
- name: Install Rust
2322
uses: dtolnay/rust-toolchain@stable
2423

24+
- name: Cache Rust dependencies
25+
uses: actions/cache@v4
26+
with:
27+
path: |
28+
~/.cargo/registry
29+
~/.cargo/git
30+
src-tauri/target
31+
key: ${{ runner.os }}-cargo-${{ hashFiles('src-tauri/Cargo.lock') }}
32+
restore-keys: |
33+
${{ runner.os }}-cargo-
34+
2535
- name: Install frontend dependencies
2636
shell: bash
2737
run: yarn install --frozen-lockfile

src/boathouse/components/StopSessionDialog/StopSession.Form.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,7 @@ export const StopSessionForm = ({
148148
return (
149149
<div>
150150
<Label className="flex gap-2 items-center mb-2">
151-
L&apos;équipage a été accompagné par un coach pendant la
152-
sortie :
151+
L&apos;équipage a été encadré par un coach pendant la sortie :
153152
</Label>
154153
<label
155154
htmlFor="coached-yes"

0 commit comments

Comments
 (0)