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