Skip to content

Commit 59efedf

Browse files
committed
adds storing artifact for macos build
1 parent 9fbfe85 commit 59efedf

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/workflows/macOS.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,17 @@ jobs:
5353
- name: Build Raspberry Pi PICO port
5454
run: python3 make.py rp2 submodules clean mpy_cross BOARD=RPI_PICO DISPLAY=rgb_display INDEV=gt911
5555

56+
- name: Get build datetime
57+
id: datetime
58+
uses: Kaven-Universe/github-action-current-date-time@v1
59+
with:
60+
format: "YYYY_MM_DD HH_mm_ss_SSS"
61+
5662
- name: Build macOS port
5763
run: python3 make.py macOS submodules clean mpy_cross DISPLAY=sdl_display INDEV=sdl_pointer
5864

59-
65+
- uses: actions/upload-artifact@v4
66+
with:
67+
name: lvgl_micropy_macos-${{ steps.datetime.outputs.month }}.${{ steps.datetime.outputs.day }}.${{ steps.datetime.outputs.year }}-${{ steps.datetime.outputs.hours }}_${{ steps.datetime.outputs.minutes }}_${{ steps.datetime.outputs.seconds }}
68+
path: build/lvgl_micropy_macos
69+
if-no-files-found: ignore

0 commit comments

Comments
 (0)