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 committed by Xiang Xiao
parent c38b4494be
commit 089b5e07c7
1 changed files with 1 additions and 1 deletions

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