Skip to content

Commit 4705239

Browse files
authored
Update build.yml (#277)
Change to upload-artifact@v4
1 parent cd83745 commit 4705239

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,17 +46,19 @@ jobs:
4646
run: ./gradlew testDebug
4747

4848
- name: Upload build outputs (APKs)
49-
uses: actions/upload-artifact@v3
49+
uses: actions/upload-artifact@v4
5050
with:
5151
name: build-outputs
5252
path: app/build/outputs
53+
overwrite: true
5354

5455
- name: Upload build reports
5556
if: always()
56-
uses: actions/upload-artifact@v3
57+
uses: actions/upload-artifact@v4
5758
with:
5859
name: build-reports
5960
path: app/build/reports
61+
overwrite: true
6062

6163
androidTest:
6264
needs: build
@@ -112,7 +114,8 @@ jobs:
112114

113115
- name: Upload test reports
114116
if: always()
115-
uses: actions/upload-artifact@v3
117+
uses: actions/upload-artifact@v4
116118
with:
117119
name: test-reports-${{ matrix.api-level }}
118120
path: '*/build/reports/androidTests'
121+
overwrite: true

0 commit comments

Comments
 (0)