Skip to content

Commit

Permalink
MAINT: Prove?
Browse files Browse the repository at this point in the history
  • Loading branch information
larsoner committed Dec 18, 2024
1 parent cd4c7a7 commit 316599c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tools/macos_install_certificates.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ KEYCHAIN_PATH=$RUNNER_TEMP/app-signing.keychain-db
OPENSSL=/usr/bin/openssl # could also just use "openssl" to use the conda-forge one
# import certificates from secrets
echo "🏃 Retrieving our Developer certificates from GH secrets …"
test ! -z "$APPLICATION_CERT_BASE64" || (echo "❌ APPLICATION_CERT_BASE64 is empty" && exit 1)
echo -n "$APPLICATION_CERT_BASE64" | base64 --decode --output $APPLICATION_CERT_PATH
test ! -z "$INSTALLER_CERT_BASE64" || (echo "❌ INSTALLER_CERT_BASE64 is empty" && exit 1)
echo -n "$INSTALLER_CERT_BASE64" | base64 --decode --output $INSTALLER_CERT_PATH
echo "✅ Done retrieving our Developer certificates from GH secrets."

Expand Down

0 comments on commit 316599c

Please sign in to comment.