Skip to content

Commit 39fccf0

Browse files
committed
github actions update
1 parent 2ce948e commit 39fccf0

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/mpy_compile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
run: |
3939
rm -rf mpy
4040
mkdir mpy
41-
find . -maxdepth 1 -name "*.py" ! -name "main.py" ! -name "config.py" -exec sh -c './micropython/mpy-cross/build/mpy-cross {} -o mpy/$(basename -s .py {}).mpy' \;
41+
find src/. -maxdepth 1 -name "*.py" ! -name "main.py" ! -name "config.py" -exec sh -c './micropython/mpy-cross/build/mpy-cross {} -o mpy/$(basename -s .py {}).mpy' \;
4242
4343
4444

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The latest features include improved memory usage, support for additional microc
2020

2121
1. Make sure you have MicroPython on your Pico
2222
2. Clone this repository
23-
3. Copy the code to your Pico
23+
3. Copy the code from the /src folder to your Pico
2424
4. Edit `config.py` with your Wi-Fi details and IP blink options:
2525
- `WIFI_SSID`: Set this to your Wi-Fi network SSID (e.g., `"your_wifi_ssid"`)
2626
- `WIFI_PASSWORD`: Set this to your Wi-Fi network password (e.g., `"your_wifi_password"`)

build.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/bash
2+
(cd build && npm run build-css)

0 commit comments

Comments
 (0)