We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99c6d17 commit 2ae8e54Copy full SHA for 2ae8e54
.github/actions/setup_flutter/action.yml
.github/workflows/release_for_android.yaml
@@ -16,15 +16,14 @@ jobs:
16
- name: Checkout
17
uses: actions/checkout@v2
18
19
- - name: Install JDK
20
- run: |
21
- sudo apt-get update
22
- sudo apt-get install -y openjdk-17-jdk-headless
23
- sudo update-java-alternatives -a
24
- java -version
25
-
+ - uses: actions/setup-java@v3
+ with:
+ distribution: temurin
+ java-version: 17
+
26
- name: Install Flutter
27
run: |
+ java -version
28
git submodule update --init --recursive
29
30
- name: Prepare Flutter Dependencies
0 commit comments