File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed
.github/actions/build-android Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change 5454 if [[ "${{ inputs.release-type }}" == "dry-run" ]]; then
5555 # dry-run: we only build ARM64 to save time/resources. For release/nightlies the default is to build all archs.
5656 export ORG_GRADLE_PROJECT_reactNativeArchitectures="arm64-v8a,x86" # x86 is required for E2E testing
57- # Use stable Hermes on stable branches, nightly Hermes on main
58- if [[ "${{ github.ref_name }}" == *"-stable" ]] || [[ "${{ github.base_ref }}" == *"-stable" ]]; then
59- export HERMES_PREBUILT_FLAG="ORG_GRADLE_PROJECT_react.internal.useHermesStable=true"
60- else
61- export HERMES_PREBUILT_FLAG="ORG_GRADLE_PROJECT_react.internal.useHermesNightly=true"
62- fi
57+ export HERMES_PREBUILT_FLAG="ORG_GRADLE_PROJECT_react.internal.useHermesNightly=true"
6358 TASKS="publishAllToMavenTempLocal build"
6459 elif [[ "${{ inputs.release-type }}" == "nightly" ]]; then
6560 # nightly: we set isSnapshot to true so artifacts are sent to the right repository on Maven Central.
You can’t perform that action at this time.
0 commit comments