Skip to content

Commit

Permalink
build.yml: Check out the correct branch of nuttx-apps
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
lupyuen authored and xiaoxiang781216 committed Oct 3, 2024
1 parent c38b449 commit 089b5e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 089b5e0

Please sign in to comment.