You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/build.yaml
+13-14Lines changed: 13 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ jobs:
14
14
uses: fkirc/skip-duplicate-actions@v5
15
15
with:
16
16
concurrent_skipping: same_content_newer
17
-
17
+
18
18
- uses: actions/checkout@v4
19
19
with:
20
20
submodules: recursive
@@ -37,14 +37,14 @@ jobs:
37
37
path: ~/.platformio
38
38
key: platformio-${{ github.run_id }}
39
39
restore-keys: platformio # This matches above key as it is only used as a prefix. it the restores the nearest cache, see https://github.com/restore-keys:/blob/main/tips-and-workarounds.md#update-a-cache
40
-
40
+
41
41
- name: Update Build cache on every commit
42
42
uses: actions/cache@v4
43
43
with:
44
44
path: ./code/.pio/
45
45
key: build-${{ github.run_id }}
46
46
restore-keys: build # This matches above key as it is only used as a prefix. it the restores the nearest cache, see https://github.com/restore-keys:/blob/main/tips-and-workarounds.md#update-a-cache
47
-
47
+
48
48
- name: Update generated-files cache on every commit
49
49
uses: actions/cache@v4
50
50
with:
@@ -86,7 +86,7 @@ jobs:
86
86
87
87
echo "Replacing variables..."
88
88
cd html; find . -type f -exec sed -i 's/$COMMIT_HASH/${{ steps.vars.outputs.sha_short }}/g' {} \;
restore-keys: update # This matches above key as it is only used as a prefix. it the restores the nearest cache, see https://github.com/restore-keys:/blob/main/tips-and-workarounds.md#update-a-cache
restore-keys: generated-files # This matches above key as it is only used as a prefix. it the restores the nearest cache, see https://github.com/restore-keys:/blob/main/tips-and-workarounds.md#update-a-cache
179
-
178
+
180
179
- name: Update remote_setup cache on every commit
181
180
uses: actions/cache@v4
182
181
with:
@@ -261,7 +260,7 @@ jobs:
261
260
cp -r ./html ./sd-card/ # Overwrite the Web UI with the preprocessed files
262
261
cd sd-card; zip -r ../manual_setup/sd-card.zip *; cd ..
restore-keys: update # This matches above key as it is only used as a prefix. it the restores the nearest cache, see https://github.com/restore-keys:/blob/main/tips-and-workarounds.md#update-a-cache
295
-
294
+
296
295
- name: Update remote_setup cache on every commit
297
296
uses: actions/cache@v4
298
297
with:
299
298
path: remote_setup
300
299
key: remote_setup-${{ github.run_id }}
301
300
restore-keys: remote_setup # This matches above key as it is only used as a prefix. it the restores the nearest cache, see https://github.com/restore-keys:/blob/main/tips-and-workarounds.md#update-a-cache
0 commit comments