Skip to content

Commit 926db03

Browse files
committed
Possible S2 fix
1 parent 520c38d commit 926db03

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.github/workflows/download-mp-release.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ jobs:
4646
run: cd bin; curl https://micropython.org/resources/firmware/LOLIN_S2_PICO-$DATE-$VERSION.bin -O
4747
- name: Download Feather S2 Neo
4848
run: cd bin; curl https://micropython.org/resources/firmware/UM_FEATHERS2NEO-$DATE-$VERSION.bin -O
49+
run: cd bin; curl https://micropython.org/resources/firmware/UM_FEATHERS2NEO-$DATE-$VERSION.app-bin -O
4950
- name: Download Unexpected Maker TinyS3
5051
run: cd bin; curl https://micropython.org/resources/firmware/UM_TINYS3-$DATE-$VERSION.bin -O
5152
- name: Download Lolin C3 Mini
@@ -58,5 +59,6 @@ jobs:
5859
git config --global user.name "github-actions[bot]"
5960
git config --global user.email "github-actions[bot]@users.noreply.github.com"
6061
git add bin
61-
git commit -m "Downloaded MicroPython release $VERSION with release date $DATE"
62-
git push
62+
# May be nothing to commit or push there were no net changes
63+
git commit -m "Downloaded MicroPython release $VERSION with release date $DATE" || true
64+
git push || true

index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ <h1>MicroPython Easy Installer for ESP32 Family and ESP8266 MCUs</h1>
8686
<li>
8787
<label><input type="radio" name="type" value="generic4m" /> Generic 4M Flash, RAM&lt;=1M</label>
8888
</li>
89-
<hr width="50%" align="left" color="gray" size="1px" />
89+
<hr width="50%" align="left" color="gray" size="1px" />
9090
<li>
9191
<label><input type="radio" name="type" value="c3_mini" /> Lolin C3 Mini</label>
9292
</li>
@@ -107,6 +107,7 @@ <h1>MicroPython Easy Installer for ESP32 Family and ESP8266 MCUs</h1>
107107
<div class="footer">
108108
<a href="https://micropython.org/">MicroPython</a> Easy Installer &mdash;
109109
Powered by <a href="https://esphome.github.io/esp-web-tools/">ESP Web Tools</a>.
110+
v1
110111
</div>
111112
</div>
112113
<script>

manifest_featherS2neo.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"builds": [
55
{
66
"chipFamily": "ESP32-S2",
7-
"parts": [{ "path": "bin/UM_FEATHERS2NEO-20240602-v1.23.0.bin", "offset": 4096 }]
7+
"parts": [{ "path": "bin/UM_FEATHERS2NEO-20240602-v1.23.0.app-bin", "offset": 4096 }]
88
}
99
]
1010
}

0 commit comments

Comments
 (0)