File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -187,6 +187,9 @@ jobs:
187
187
name : Sign and notarize macOS package
188
188
# ESRP service requires signing to run on Windows
189
189
runs-on : windows-latest
190
+ strategy :
191
+ matrix :
192
+ runtime : [ osx-x64, osx-arm64 ]
190
193
needs : osx-pack
191
194
steps :
192
195
- name : Check out repository
@@ -195,7 +198,7 @@ jobs:
195
198
- name : Download unsigned package
196
199
uses : actions/download-artifact@v3
197
200
with :
198
- name : tmp.osx -pack
201
+ name : tmp.${{ matrix.runtime }} -pack
199
202
path : pkg
200
203
201
204
- name : Zip unsigned package
@@ -255,7 +258,7 @@ jobs:
255
258
- name : Publish signed package
256
259
uses : actions/upload-artifact@v3
257
260
with :
258
- name : osx -sign
261
+ name : ${{ matrix.runtime }} -sign
259
262
path : signed/*.pkg
260
263
261
264
# ================================
You can’t perform that action at this time.
0 commit comments