Skip to content

Commit

Permalink
Merge pull request #2570 from cwensley/curtis/use-notarytool
Browse files Browse the repository at this point in the history
Mac: Use notarytool to store credentials for release build
  • Loading branch information
cwensley authored Oct 31, 2023
2 parents 5658c89 + 9493acf commit 0c01d4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
- name: Set notarization credentials
if: startsWith(github.ref, 'refs/tags/')
run: |
xcrun altool --store-password-in-keychain-item "AC_PASSWORD" -u "${{ secrets.AC_USERNAME }}" -p "${{ secrets.AC_PASSWORD }}"
xcrun notarytool store-credentials "AC_PASSWORD" --apple-id "${{ secrets.AC_USERNAME }}" --team-id "${{ secrets.AC_TEAMID }}" --password "${{ secrets.AC_PASSWORD }}"
echo "BuildParameters=${{ env.BuildParameters }} /p:EnableNotarizationBuild=True" >> $GITHUB_ENV
- name: Build
Expand Down

0 comments on commit 0c01d4e

Please sign in to comment.