We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c129b1e commit 228c47dCopy full SHA for 228c47d
1 file changed
.github/workflows/buildRelease.yml
@@ -30,10 +30,14 @@ jobs:
30
fetch-depth: 0
31
ref: ${{ github.event.inputs.git-ref }}
32
33
- - name: Set up JDK environment
34
- uses: actions/setup-java@v1.4.3
+ - name: Set up JDK 17
+ uses: actions/setup-java@v3
35
with:
36
- java-version: 17
+ java-version: '17'
37
+ distribution: 'temurin'
38
+
39
+ - name: Setup Android SDK
40
+ uses: android-actions/setup-android@v3
41
42
- name: Setup Python enviroment
43
uses: actions/setup-python@v2
@@ -73,8 +77,6 @@ jobs:
73
77
| jq '[.commits[]|{message:(.commit.message | split("\n")), username:.author.login}]' \
74
78
| jq -r '.[]|"- \(.message | first) (@\(.username))"')
75
79
{delimiter}" >> $GITHUB_ENV
76
- cd ~/Library/Android/sdk/tools/bin/
- ./sdkmanager --licenses
80
81
- name: Setup APK signing
82
run: |
0 commit comments