@@ -117,12 +117,11 @@ jobs:
117
117
working-directory: _package
118
118
119
119
# Upload runner package tar.gz/zip as artifact.
120
- # Since each package name is unique, so we don't need to put ${{matrix}} info into artifact name
121
120
- name : Publish Artifact
122
121
if : github.event_name != 'pull_request'
123
122
uses : actions/upload-artifact@v4
124
123
with :
125
- name : runner-packages
124
+ name : runner-packages-${{ matrix.runtime }}
126
125
path : |
127
126
_package
128
127
@@ -134,10 +133,40 @@ jobs:
134
133
- uses : actions/checkout@v3
135
134
136
135
# Download runner package tar.gz/zip produced by 'build' job
137
- - name : Download Artifact
136
+ - name : Download Artifact (win-x64)
138
137
uses : actions/download-artifact@v4
139
138
with :
140
- name : runner-packages
139
+ name : runner-packages-win-x64
140
+ path : ./
141
+ - name : Download Artifact (win-arm64)
142
+ uses : actions/download-artifact@v4
143
+ with :
144
+ name : runner-packages-win-arm64
145
+ path : ./
146
+ - name : Download Artifact (osx-x64)
147
+ uses : actions/download-artifact@v4
148
+ with :
149
+ name : runner-packages-osx-x64
150
+ path : ./
151
+ - name : Download Artifact (osx-arm64)
152
+ uses : actions/download-artifact@v4
153
+ with :
154
+ name : runner-packages-osx-arm64
155
+ path : ./
156
+ - name : Download Artifact (linux-x64)
157
+ uses : actions/download-artifact@v4
158
+ with :
159
+ name : runner-packages-linux-x64
160
+ path : ./
161
+ - name : Download Artifact (linux-arm)
162
+ uses : actions/download-artifact@v4
163
+ with :
164
+ name : runner-packages-linux-arm
165
+ path : ./
166
+ - name : Download Artifact (linux-arm64)
167
+ uses : actions/download-artifact@v4
168
+ with :
169
+ name : runner-packages-linux-arm64
141
170
path : ./
142
171
143
172
# Create ReleaseNote file
0 commit comments