From 6d341705c0a5eeacb21fde35332af15c91aedddf Mon Sep 17 00:00:00 2001 From: Ahmad Ansori Palembani Date: Wed, 22 May 2024 12:45:49 +0700 Subject: [PATCH] ci: Rename --- .github/workflows/build_push.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_push.yml b/.github/workflows/build_push.yml index acf143bcdd..f43a3acd23 100644 --- a/.github/workflows/build_push.yml +++ b/.github/workflows/build_push.yml @@ -71,19 +71,21 @@ jobs: echo "PREV_TAG=$(git tag -l | grep 'r' | tail -1)" >> $GITHUB_ENV # PROD - - name: Build release build + - name: Build release build and run tests if: startsWith(env.VERSION_TAG, 'v') run: ./gradlew assembleStandardRelease testStandardReleaseUnitTest # NIGHTLY - - name: Build nightly build + - name: Build nightly build and run tests if: startsWith(env.VERSION_TAG, 'r') run: ./gradlew assembleStandardNightly testStandardNightlyUnitTest - - name: Publish Test Report + - name: Publish test report uses: mikepenz/action-junit-report@v4 if: success() || failure() with: + include_passed: true + detailed_summary: true report_paths: '**/build/test-results/test*/TEST-*.xml' - name: Sign APK