From 1a8593dfa64791726d8fd06ddcc4f3739c6c523e Mon Sep 17 00:00:00 2001 From: Stanislas Date: Tue, 3 Dec 2024 16:58:23 +0100 Subject: [PATCH] Fix(githubAction): assemble after build --- .github/workflows/release-new-version.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-new-version.yml b/.github/workflows/release-new-version.yml index 6210631cf..6277e0d67 100644 --- a/.github/workflows/release-new-version.yml +++ b/.github/workflows/release-new-version.yml @@ -53,8 +53,11 @@ jobs: - name: Grant Execute Permission For Gradlew run: chmod +x gradlew # Build app - - name: Build project APK / AAR / JAR + - name: Build for run tests or static analysis run: ./gradlew build + - name: Build project APK / AAR / JAR + run: ./gradlew assemble + ##################### # Prepare release #