Skip to content

Commit b2867e8

Browse files
author
NullPointerException
committed
update CI
1 parent 04a9a89 commit b2867e8

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
./gradlew assembleDebug lintDebug --stacktrace -DskipFormatKtlint
5656
5757
- name: Upload APKs
58-
uses: actions/upload-artifact@v3
58+
uses: actions/upload-artifact@v4
5959
with:
6060
name: all-apks-in-one(intermediates)
6161
retention-days: 1
@@ -89,12 +89,14 @@ jobs:
8989
file: ${{ fromJson(needs.build-client.outputs.files) }}
9090
steps:
9191
- name: Download APKs
92-
uses: actions/download-artifact@v3
92+
uses: actions/download-artifact@v4
9393
with:
9494
name: all-apks-in-one(intermediates)
95+
path: apks
96+
merge-multiple: true
9597

9698
- name: Upload artifacts
97-
uses: actions/upload-artifact@v3
99+
uses: actions/upload-artifact@v4
98100
with:
99101
name: ${{ matrix.file }}
100-
path: ${{ matrix.file }}
102+
path: apks/${{ matrix.file }}

0 commit comments

Comments
 (0)