Skip to content

Commit 9a2a002

Browse files
Github workflow
1 parent 49f01d7 commit 9a2a002

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/macos.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,14 @@ jobs:
4848
- name: Run unit tests on macOS
4949
run: |
5050
./tests/unittest.sh
51-
mv lvgl_micropython/build/lvgl_micropy_macOS lvgl_micropython/build/MicroPythonOS_macOS_${{ steps.version.outputs.OS_VERSION }}.bin
51+
mv lvgl_micropython/build/lvgl_micropy_macOS lvgl_micropython/build/MicroPythonOS_amd64_macOS_${{ steps.version.outputs.OS_VERSION }}.bin
5252
continue-on-error: true
5353

5454
- name: Upload built binary as artifact
5555
uses: actions/upload-artifact@v4
5656
with:
57-
name: MicroPythonOS_macOS_${{ steps.version.outputs.OS_VERSION }}.bin
58-
path: lvgl_micropython/build/MicroPythonOS_macOS_${{ steps.version.outputs.OS_VERSION }}.bin
57+
name: MicroPythonOS_amd64_macOS_${{ steps.version.outputs.OS_VERSION }}.bin
58+
path: lvgl_micropython/build/MicroPythonOS_amd64_macOS_${{ steps.version.outputs.OS_VERSION }}.bin
5959
compression-level: 0 # don't zip it
6060
retention-days: 7
6161

internal_filesystem/lib/mpos/net/download_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
download_manager.py - HTTP download service for MicroPythonOS
33
4-
Provides async HTTP downloads with flexible output modes:
4+
Provides synchronous and asynchronous HTTP downloads with flexible output modes:
55
- Download to memory (returns bytes)
66
- Download to file (returns bool)
77
- Streaming with chunk callback (returns bool)

0 commit comments

Comments
 (0)