From 10985d533704cbdefe865fc9dad27679c1fe0749 Mon Sep 17 00:00:00 2001 From: Willy-JL <49810075+Willy-JL@users.noreply.github.com> Date: Thu, 10 Oct 2024 03:09:24 +0100 Subject: [PATCH] fix --- .github/workflows/build.yml | 3 +-- .github/workflows/lint.yml | 4 +++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d8033f548..013fb3afb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -37,7 +37,6 @@ jobs: - name: "Get commit details" run: | - git add applications/external BUILD_TYPE='DEBUG=0 COMPACT=1' echo "FBT_BUILD_TYPE=$BUILD_TYPE" >> $GITHUB_ENV echo "TARGET=${{ matrix.target }}" >> $GITHUB_ENV @@ -45,7 +44,7 @@ jobs: - name: "Build the firmware and apps" run: | - ls -la + git add applications/external ./fbt TARGET_HW=$TARGET_HW $FBT_BUILD_TYPE updater_package - name: "Check for uncommitted changes" diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 7c1a40a84..c545adb09 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -27,4 +27,6 @@ jobs: ref: ${{ github.event.pull_request.head.sha }} - name: "Check formatting" - run: ./fbt lint_all + run: | + git add applications/external + ./fbt lint_all