File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 5
5
name : Build
6
6
runs-on : ubuntu-22.04
7
7
steps :
8
- - uses : actions/checkout@v2
8
+ - uses : actions/checkout@v4
9
9
10
10
- name : Set up JDK
11
- uses : actions/setup-java@v1
11
+ uses : actions/setup-java@v4
12
12
with :
13
13
java-version : 11
14
+ distribution : adopt-hotspot
14
15
15
16
- name : Setup Android SDK
16
17
uses : android-actions/setup-android@v2
17
18
18
19
- name : Build release
19
20
run : ./gradlew assembleRelease
20
21
21
- - uses : actions/upload-artifact@v2
22
+ - uses : actions/upload-artifact@v4
22
23
with :
23
24
name : unsigned-app.apk
24
25
path : app/build/outputs/apk/release/app-release-unsigned.apk
31
32
if : github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
32
33
steps :
33
34
- name : Get the APK
34
- uses : actions/download-artifact@v4.1.7
35
+ uses : actions/download-artifact@v4
35
36
with :
36
37
name : unsigned-app.apk
37
38
path : .
You can’t perform that action at this time.
0 commit comments