Skip to content

Commit 0c01d4e

Browse files
authored
Merge pull request #2570 from cwensley/curtis/use-notarytool
Mac: Use notarytool to store credentials for release build
2 parents 5658c89 + 9493acf commit 0c01d4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
- name: Set notarization credentials
103103
if: startsWith(github.ref, 'refs/tags/')
104104
run: |
105-
xcrun altool --store-password-in-keychain-item "AC_PASSWORD" -u "${{ secrets.AC_USERNAME }}" -p "${{ secrets.AC_PASSWORD }}"
105+
xcrun notarytool store-credentials "AC_PASSWORD" --apple-id "${{ secrets.AC_USERNAME }}" --team-id "${{ secrets.AC_TEAMID }}" --password "${{ secrets.AC_PASSWORD }}"
106106
echo "BuildParameters=${{ env.BuildParameters }} /p:EnableNotarizationBuild=True" >> $GITHUB_ENV
107107
108108
- name: Build

0 commit comments

Comments
 (0)