Skip to content

Commit 27b7008

Browse files
Configure JDK 21 and update gradlew permissions
Added setup for JDK 21 and permission for gradlew.
1 parent 570dca1 commit 27b7008

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/generate-aab-file.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,15 @@ jobs:
1717
- uses: actions/checkout@v4
1818
with:
1919
ref: ${{ inputs.ref }}
20-
21-
- name: Setting up project
22-
uses: ./.github/actions/setup
20+
21+
- name: Set up JDK 21
22+
uses: actions/setup-java@v4
23+
with:
24+
java-version: '21'
25+
distribution: 'jetbrains'
26+
27+
- name: Grant execute permission for gradlew
28+
run: chmod +x ./gradlew
2329

2430
- name: Build Release AAB
2531
id: buildRelease

0 commit comments

Comments
 (0)