File tree Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change 99
99
100
100
- name : Upload app binary
101
101
if : ${{ inputs.upload_app_binaries_artifact != '' }}
102
- uses : actions/upload-artifact@v3
102
+ uses : actions/upload-artifact@v4
103
103
with :
104
- name : ${{ inputs.upload_app_binaries_artifact }}
104
+ name : ${{ inputs.upload_app_binaries_artifact }}-${{ matrix.device }}
105
105
path : ${{ steps.build.outputs.binary_path }}
106
106
if-no-files-found : error
107
+
108
+ merge_artifacts :
109
+ name : Merge build artifacts
110
+ needs : build
111
+ runs-on : ubuntu-latest
112
+ if : ${{ inputs.upload_app_binaries_artifact != '' }}
113
+ steps :
114
+ - uses : actions/upload-artifact/merge@v4
115
+ with :
116
+ name : ${{ inputs.upload_app_binaries_artifact }}
117
+ pattern : ${{ inputs.upload_app_binaries_artifact }}-*
118
+ delete-merged : true
You can’t perform that action at this time.
0 commit comments