We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28fe55b commit ab865d3Copy full SHA for ab865d3
.github/workflows/build lvgl_mpy1.yml
@@ -56,12 +56,12 @@ jobs:
56
57
- name: Check build result
58
run: |
59
- if [ ! -f "build/*.bin" ]; then
+ if [ ! -f "${{ github.workspace }}/build/*.bin" ]; then
60
echo "No .bin files found in build directory. Compilation failed."
61
exit 1
62
fi
63
64
- uses: actions/upload-artifact@v4
65
with:
66
name: lvgl_micropy_ESP32
67
- path: build/*.bin
+ path: ${{ github.workspace }}/build/*.bin
0 commit comments