Use same credentials as the auth app

While we won't actually be using the monorepo for releases, get the action to a
known state:

- MAC_OS_CERTIFICATE and MAC_OS_CERTIFICATE_PASSWORD is the same GitHub secret
  that the auth app already uses

- Need to add APPLE_API_KEY, APPLE_API_KEY_ID, APPLE_API_KEY_ISSUER_ID.
This commit is contained in:
Manav Rathi 2024-05-02 19:05:52 +05:30
parent fa182b951d
commit aed781b0ff
No known key found for this signature in database

View file

@ -63,8 +63,8 @@ jobs:
# release the app after building
release: ${{ startsWith(github.ref, 'refs/tags/v') }}
mac_certs: ${{ secrets.MAC_CERTS }}
mac_certs_password: ${{ secrets.MAC_CERTS_PASSWORD }}
mac_certs: ${{ secrets.MAC_OS_CERTIFICATE }}
mac_certs_password: ${{ secrets.MAC_OS_CERTIFICATE_PASSWORD }}
env:
# macOS notarization API key details
API_KEY_ID: ${{ secrets.APPLE_API_KEY_ID }}