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
restore-keys: pip # 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
33
33
34
34
- name: Update PlatformIO cache on every commit
35
-
uses: actions/cache@v3.2.3
35
+
uses: actions/cache@v4
36
36
with:
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
-
uses: actions/cache@v3.2.3
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
-
uses: actions/cache@v3.2.3
49
+
uses: actions/cache@v4
50
50
with:
51
51
path: |
52
52
./code/.pio/build/esp32cam/firmware.bin
@@ -57,7 +57,7 @@ jobs:
57
57
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
run: cd code; platformio run --environment esp32cam
72
72
73
-
- name: Prepare Web UI (copy data from repo, generate tooltip pages and update hashes in all files)
73
+
- name: Prepare Web UI (generate tooltip pages and update hashes in all files)
74
74
run: |
75
75
rm -rf ./html
76
76
mkdir html
@@ -79,7 +79,7 @@ jobs:
79
79
python -m pip install markdown
80
80
mkdir html/param-tooltips
81
81
cd tools/parameter-tooltip-generator
82
-
bash generate-param-doc-tooltips.sh
82
+
python generate-param-doc-tooltips.py
83
83
cd ../..
84
84
85
85
cp -r ./sd-card/html/* ./html/
@@ -101,10 +101,10 @@ jobs:
101
101
needs: build
102
102
103
103
steps:
104
-
- uses: actions/checkout@v3
104
+
- uses: actions/checkout@v4
105
105
106
106
- name: Update generated-files cache on every commit
107
-
uses: actions/cache@v3.2.3
107
+
uses: actions/cache@v4
108
108
with:
109
109
path: |
110
110
./code/.pio/build/esp32cam/firmware.bin
@@ -115,7 +115,7 @@ jobs:
115
115
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
- name: Update generated-files cache on every commit
170
-
uses: actions/cache@v3.2.3
170
+
uses: actions/cache@v4
171
171
with:
172
172
path: |
173
173
./code/.pio/build/esp32cam/firmware.bin
@@ -178,7 +178,7 @@ jobs:
178
178
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
- name: Update generated-files cache on every commit
226
-
uses: actions/cache@v3.2.3
226
+
uses: actions/cache@v4
227
227
with:
228
228
path: |
229
229
./code/.pio/build/esp32cam/firmware.bin
@@ -234,7 +234,7 @@ jobs:
234
234
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
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
295
296
296
- name: Update remote_setup cache on every commit
297
-
uses: actions/cache@v3.2.3
297
+
uses: actions/cache@v4
298
298
with:
299
299
path: remote_setup
300
300
key: remote_setup-${{ github.run_id }}
301
301
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
302
302
303
303
- name: Update manual_setup cache on every commit
304
-
uses: actions/cache@v3.2.3
304
+
uses: actions/cache@v4
305
305
with:
306
306
path: manual_setup
307
307
key: manual_setup-${{ github.run_id }}
@@ -396,7 +396,7 @@ jobs:
396
396
397
397
steps:
398
398
- name: Checkout
399
-
uses: actions/checkout@v3
399
+
uses: actions/checkout@v4
400
400
401
401
- name: Get version of last release
402
402
id: last_release
@@ -410,20 +410,21 @@ jobs:
410
410
run: |
411
411
echo "Updating Web installer to use firmware from ${{ steps.last_release.outputs.tag_name }}..."
Copy file name to clipboardExpand all lines: code/README.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -69,3 +69,6 @@ pio device monitor -p /dev/ttyUSB0
69
69
- `pio run --target erase` to erase the flash
70
70
- `pio run --target upload` this will upload the `bootloader.bin, partitions.bin,firmware.bin` from the `code/.pio/build/esp32cam/` folder.
71
71
- `pio device monitor` to observe the logs via uart
72
+
73
+
# Update Parameters
74
+
If you create or rename a parameter, make sure to update its documentation in `../param-docs/parameter-pages`! Check the `../param-docs/README.md` for more information.
0 commit comments