build.yml: Check out the correct branch of nuttx-apps

When building a branch like `releases/12.7`, the CI Workflow incorrectly checks out the `master` branch of `nuttx-apps`, instead of `releases/12.7`. This PR fixes a typo in `apps_ref`, to check out the correct branch.
This commit is contained in:
Lup Yuen Lee 2024-10-03 11:20:30 +08:00
parent 5f6eb292a8
commit 7edb84c0c5

View File

@ -86,7 +86,7 @@ jobs:
fi
echo "name=$OS_REF" >> $GITHUB_OUTPUT
echo "app_ref=$APPS_REF" >> $GITHUB_OUTPUT
echo "apps_ref=$APPS_REF" >> $GITHUB_OUTPUT
- name: Checkout nuttx repo
uses: actions/checkout@v4