Skip to content

Commit 3b57816

Browse files
committed
fixup! macOS release: sign and notarize package
1 parent b2c5c45 commit 3b57816

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,9 @@ jobs:
187187
name: Sign and notarize macOS package
188188
# ESRP service requires signing to run on Windows
189189
runs-on: windows-latest
190+
strategy:
191+
matrix:
192+
runtime: [ osx-x64, osx-arm64 ]
190193
needs: osx-pack
191194
steps:
192195
- name: Check out repository
@@ -195,7 +198,7 @@ jobs:
195198
- name: Download unsigned package
196199
uses: actions/download-artifact@v3
197200
with:
198-
name: tmp.osx-pack
201+
name: tmp.${{ matrix.runtime }}-pack
199202
path: pkg
200203

201204
- name: Zip unsigned package
@@ -255,7 +258,7 @@ jobs:
255258
- name: Publish signed package
256259
uses: actions/upload-artifact@v3
257260
with:
258-
name: osx-sign
261+
name: ${{ matrix.runtime }}-sign
259262
path: signed/*.pkg
260263

261264
# ================================

0 commit comments

Comments
 (0)