Commit 239e52a 1 parent b060456 commit 239e52a Copy full SHA for 239e52a
File tree 2 files changed +9
-6
lines changed
actions/agent-package-mac
2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 5
5
required : true
6
6
p12-password :
7
7
required : true
8
- appstore-connect -username :
8
+ notarization -username :
9
9
required : true
10
- appstore-connect-password :
10
+ notarization-team :
11
+ required : true
12
+ notarization-password :
11
13
required : true
12
14
13
15
runs :
91
93
if : ${{ github.event_name != 'pull_request' }}
92
94
shell : sh
93
95
run : |
94
- xcrun notarytool submit --wait --apple-id "${{ inputs.appstore-connect- username }}" --password "${{ inputs.appstore-connect -password }}" "${{ env.KLOGG_BUILD_ROOT }}/packages/${{ env.KLOGG_DMG }}"
96
+ xcrun notarytool submit --wait --apple-id "${{ inputs.notarization- username }}" --team-id "${{ inputs.notarization-team }}" --password "${{ inputs.notarization -password }}" "${{ env.KLOGG_BUILD_ROOT }}/packages/${{ env.KLOGG_DMG }}"
95
97
96
98
- name : Mac staple DMG
97
99
if : ${{ github.event_name != 'pull_request' }}
@@ -103,7 +105,7 @@ runs:
103
105
if : ${{ github.event_name != 'pull_request' }}
104
106
shell : sh
105
107
run : |
106
- xcrun notarytool submit --wait --apple-id "${{ inputs.appstore-connect- username }}" --password "${{ inputs.appstore-connect -password }}" "${{ env.KLOGG_BUILD_ROOT }}/packages/${{ env.KLOGG_PKG }}"
108
+ xcrun notarytool submit --wait --apple-id "${{ inputs.notarization- username }}" --team-id "${{ inputs.notarization-team }}" --password "${{ inputs.notarization -password }}" "${{ env.KLOGG_BUILD_ROOT }}/packages/${{ env.KLOGG_PKG }}"
107
109
108
110
- name : Mac staple PKG
109
111
if : ${{ github.event_name != 'pull_request' }}
Original file line number Diff line number Diff line change @@ -190,8 +190,9 @@ jobs:
190
190
with :
191
191
p12-file-base64 : ${{ secrets.CODESIGN_BASE64 }}
192
192
p12-password : ${{ secrets.CODESIGN_PASSWORD }}
193
- appstore-connect-username : ${{ secrets.NOTARIZATION_USERNAME }}
194
- appstore-connect-password : ${{ secrets.NOTARIZATION_PASSWORD }}
193
+ notarization-username : ${{ secrets.NOTARIZATION_USERNAME }}
194
+ notarization-team : ${{ secrets.NOTARIZATION_TEAM }}
195
+ notarization-password : ${{ secrets.NOTARIZATION_PASSWORD }}
195
196
196
197
- uses : actions/upload-artifact@v3
197
198
with :
You can’t perform that action at this time.
0 commit comments