From 089b5e07c7ebb80d5c60058eff2214f51e5895c8 Mon Sep 17 00:00:00 2001 From: Lup Yuen Lee Date: Thu, 3 Oct 2024 11:20:30 +0800 Subject: [PATCH] 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. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b54e49b0ee..f76b32b0b4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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