File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -46,17 +46,19 @@ jobs:
46
46
run : ./gradlew testDebug
47
47
48
48
- name : Upload build outputs (APKs)
49
- uses : actions/upload-artifact@v3
49
+ uses : actions/upload-artifact@v4
50
50
with :
51
51
name : build-outputs
52
52
path : app/build/outputs
53
+ overwrite : true
53
54
54
55
- name : Upload build reports
55
56
if : always()
56
- uses : actions/upload-artifact@v3
57
+ uses : actions/upload-artifact@v4
57
58
with :
58
59
name : build-reports
59
60
path : app/build/reports
61
+ overwrite : true
60
62
61
63
androidTest :
62
64
needs : build
@@ -112,7 +114,8 @@ jobs:
112
114
113
115
- name : Upload test reports
114
116
if : always()
115
- uses : actions/upload-artifact@v3
117
+ uses : actions/upload-artifact@v4
116
118
with :
117
119
name : test-reports-${{ matrix.api-level }}
118
120
path : ' */build/reports/androidTests'
121
+ overwrite : true
You can’t perform that action at this time.
0 commit comments