Skip to content

Commit ae344ce

Browse files
committed
fix: Ensure liblvgl.a is copied correctly by creating the target directory in the GitHub Actions workflow
1 parent 03174d5 commit ae344ce

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/publish-tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,8 @@ jobs:
126126
cd /tmp/build && \
127127
emcmake cmake /work/lib && \
128128
emmake make -j8 && \
129-
cp liblvgl.a /work/lib/'
129+
mkdir -p /work/lib && \
130+
cp /tmp/build/liblvgl.a /work/lib/'
130131
131132
- name: Build runtime
132133
run: |

0 commit comments

Comments
 (0)