From 594558eddfb4db993f5bf862a17d1c1b70e6a2dc 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 9d8f1e858a..c469e8ed94 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -81,7 +81,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