CI: Check out the correct branch of nuttx repo when compiling nuttx-apps

When compiling the Release Branch of `nuttx-apps`, our CI Workflow `build.yml` checks out the Master Branch of `nuttx` repo, which is incorrect. This happens due to a typo in `build.yml`: https://github.com/apache/nuttx/issues/14513

This PR fixes the typo in `build.yml` to checkout the correct branch of `nuttx` repo.
This commit is contained in:
Lup Yuen Lee 2024-10-27 13:09:51 +08:00 committed by Xiang Xiao
parent f9a2dc50b1
commit 38fbb4e286

View file

@ -86,7 +86,7 @@ jobs:
esac
fi
echo "name=$OS_REF" >> $GITHUB_OUTPUT
echo "os_ref=$OS_REF" >> $GITHUB_OUTPUT
echo "apps_ref=$APPS_REF" >> $GITHUB_OUTPUT
- name: Checkout nuttx repo