Skip to content

Commit a67bf11

Browse files
Updated android.yml
1 parent f0ad6ce commit a67bf11

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/android.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
env:
1010
JDK_VERSION: 17
11-
JDK_DISTRIBUTION: 'temurin'
11+
JDK_DISTRIBUTION: temurin
1212

1313
jobs:
1414
build:
@@ -20,8 +20,10 @@ jobs:
2020
- name: Setup JDK {{ env.JDK_VERSION }}
2121
uses: actions/setup-java@v4
2222
with:
23-
java-version: 17
24-
distribution: 'temurin'
23+
java-version: {{ env.JDK_VERSION }}
24+
distribution: {{ env.JDK_DISTRIBUTION }}
25+
- name: Make gradlew executable
26+
run: chmod +x ./gradlew
2527
- name: Build with Gradle
2628
run: ./gradlew build
2729
- name: Build APK

0 commit comments

Comments
 (0)