Skip to content

Commit b430a73

Browse files
committed
fix: use absolute paths in manifest to fix 404 on flash page
1 parent 9f2481e commit b430a73

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/release-firmware.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ jobs:
6666
{
6767
"chipFamily": "ESP32",
6868
"parts": [
69-
{ "path": "bootloader.bin", "offset": 4096 },
70-
{ "path": "partitions.bin", "offset": 32768 },
71-
{ "path": "firmware.bin", "offset": 65536 }
69+
{ "path": "/SecureGen/firmware/bootloader.bin", "offset": 4096 },
70+
{ "path": "/SecureGen/firmware/partitions.bin", "offset": 32768 },
71+
{ "path": "/SecureGen/firmware/firmware.bin", "offset": 65536 }
7272
]
7373
}
7474
]

website/public/firmware/manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
{
77
"chipFamily": "ESP32",
88
"parts": [
9-
{ "path": "bootloader.bin", "offset": 4096 },
10-
{ "path": "partitions.bin", "offset": 32768 },
11-
{ "path": "firmware.bin", "offset": 65536 }
9+
{ "path": "/SecureGen/firmware/bootloader.bin", "offset": 4096 },
10+
{ "path": "/SecureGen/firmware/partitions.bin", "offset": 32768 },
11+
{ "path": "/SecureGen/firmware/firmware.bin", "offset": 65536 }
1212
]
1313
}
1414
]

0 commit comments

Comments
 (0)