Skip to content

Commit

Permalink
fix: Ensure liblvgl.a is copied correctly by creating the target dire…
Browse files Browse the repository at this point in the history
…ctory in the GitHub Actions workflow
  • Loading branch information
richardgazdik committed Dec 12, 2024
1 parent 03174d5 commit ae344ce
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/publish-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,8 @@ jobs:
cd /tmp/build && \
emcmake cmake /work/lib && \
emmake make -j8 && \
cp liblvgl.a /work/lib/'
mkdir -p /work/lib && \
cp /tmp/build/liblvgl.a /work/lib/'
- name: Build runtime
run: |
Expand Down

0 comments on commit ae344ce

Please sign in to comment.