From 8e99c8a051aeca1f154bd5ea62ae99b2634c09d9 Mon Sep 17 00:00:00 2001 From: Lup Yuen Lee Date: Sun, 27 Oct 2024 13:09:47 +0800 Subject: [PATCH] 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. --- .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 e8f35afcd7..304152c307 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -82,7 +82,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