From fc540a15eb9efa78da195e301724a12db517c309 Mon Sep 17 00:00:00 2001 From: gleb7499 <164905074+gleb7499@users.noreply.github.com> Date: Fri, 15 Nov 2024 12:19:11 +0300 Subject: [PATCH] Update build.yml - Added transition into path "LifeLine" --- .github/workflows/build.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2ea26fa..99f9ea1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,9 +31,13 @@ jobs: key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} restore-keys: ${{ runner.os }}-gradle - name: Make gradlew executable - run: chmod +x ./gradlew + run: | + cd LifeLine + chmod +x ./gradlew - name: Build and analyze env: GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }} # Needed to get PR information, if any SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} - run: ./gradlew build sonar --info \ No newline at end of file + run: | + cd LifeLine + ./gradlew build sonar --info \ No newline at end of file