Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit 294b5f0

Browse files
Add java step with java 8 version
1 parent 274d2bc commit 294b5f0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/react-native-code-push-ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,14 @@ jobs:
1212
strategy:
1313
matrix:
1414
api-level: [ 27 ]
15+
java-version: [ 8 ]
1516
steps:
1617
- name: Checkout
1718
uses: actions/checkout@v3
19+
- name: Setup Java
20+
uses: actions/setup-java@v3
21+
with:
22+
java-version: ${{ matrix.java-version }}
1823
- name: Start adb server
1924
run: adb devices
2025
- name: Gradle cache
@@ -30,11 +35,6 @@ jobs:
3035
- run: adb shell settings put global window_animation_scale 0.0
3136
- run: adb shell settings put global transition_animation_scale 0.0
3237
- run: adb shell settings put global animator_duration_scale 0.0
33-
- name: Setup Java
34-
uses: actions/setup-java@v3
35-
with:
36-
distribution: 'zulu'
37-
java-version: '8'
3838
- name: Setup Ruby
3939
uses: ruby/setup-ruby@v1
4040
with:

0 commit comments

Comments
 (0)