Skip to content

Commit ab865d3

Browse files
committed
UPDATE workflows
1 parent 28fe55b commit ab865d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build lvgl_mpy1.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,12 @@ jobs:
5656

5757
- name: Check build result
5858
run: |
59-
if [ ! -f "build/*.bin" ]; then
59+
if [ ! -f "${{ github.workspace }}/build/*.bin" ]; then
6060
echo "No .bin files found in build directory. Compilation failed."
6161
exit 1
6262
fi
6363
6464
- uses: actions/upload-artifact@v4
6565
with:
6666
name: lvgl_micropy_ESP32
67-
path: build/*.bin
67+
path: ${{ github.workspace }}/build/*.bin

0 commit comments

Comments
 (0)