1
0
mirror of synced 2026-01-05 03:06:35 -05:00

Fixes breaking base64 command options change in OSX 13.0+ (#22970)

This commit is contained in:
Michael Kushinski
2023-01-17 18:35:36 -05:00
committed by GitHub
parent 35e34ad27e
commit f6b9bf6efc

View File

@@ -98,8 +98,8 @@ jobs:
KEYCHAIN_PATH=$RUNNER_TEMP/app-signing.keychain-db
# import certificate and provisioning profile from secrets
echo -n "$BUILD_CERTIFICATE_BASE64" | base64 --decode --output $CERTIFICATE_PATH
echo -n "$BUILD_PROVISION_PROFILE_BASE64" | base64 --decode --output $PP_PATH
echo -n "$BUILD_CERTIFICATE_BASE64" | base64 --decode -o $CERTIFICATE_PATH
echo -n "$BUILD_PROVISION_PROFILE_BASE64" | base64 --decode -o $PP_PATH
# create temporary keychain
security create-keychain -p "$KEYCHAIN_PASSWORD" $KEYCHAIN_PATH