File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 9393 elif [[ "${{ inputs.build_type }}" == "main" ]]; then
9494 {
9595 echo "apk-target-path=android/app/build/outputs/apk/prod/release"
96- echo "test-apk-target-path=android/app/build/outputs/apk/androidTest/prod /release"
96+ echo "test-apk-target-path=android/app/build/outputs/apk/androidTest/debug /release"
9797 echo "aab-target-path=android/app/build/outputs/bundle/prodRelease"
9898 echo "artifact_name=app-prod-release"
9999 } >> "$GITHUB_OUTPUT"
Original file line number Diff line number Diff line change @@ -551,10 +551,11 @@ generateAndroidBinary() {
551551 # Create flavor configuration
552552 flavorConfiguration=" app:assemble${flavor}${configuration} "
553553
554+ # Create test configuration
555+ testConfiguration=" app:assemble${flavor} DebugAndroidTest"
556+
554557 echo " Generating Android binary for ($flavor ) flavor with ($configuration ) configuration"
555558 if [ " $configuration " = " Release" ] ; then
556- # Create test configuration
557- testConfiguration=" app:assemble${flavor} ReleaseAndroidTest"
558559
559560 # Generate Android binary
560561 ./gradlew $flavorConfiguration $testConfiguration --build-cache --parallel
@@ -570,8 +571,6 @@ generateAndroidBinary() {
570571 echo " Generating checksum for ($flavor ) flavor with ($configuration ) configuration"
571572 yarn $checkSumCommand
572573 elif [ " $configuration " = " Debug" ] ; then
573- # Create test configuration
574- testConfiguration=" app:assemble${flavor} DebugAndroidTest"
575574 # Generate Android binary
576575 ./gradlew $flavorConfiguration $testConfiguration --build-cache --parallel
577576 fi
You can’t perform that action at this time.
0 commit comments