From aff0d6da946ceeb9a0c55558029f1591c62b283e Mon Sep 17 00:00:00 2001 From: Marc Culler Date: Tue, 24 Oct 2023 15:58:11 -0500 Subject: [PATCH] Fight with CI over base64 output. --- .github/workflows/macOS.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/macOS.yml b/.github/workflows/macOS.yml index 246b973..2d9db6f 100644 --- a/.github/workflows/macOS.yml +++ b/.github/workflows/macOS.yml @@ -31,7 +31,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 + touch $CERTIFICATE_PATH + echo -n "$BUILD_CERTIFICATE_BASE64" | base64 -d -o $CERTIFICATE_PATH # create temporary keychain security create-keychain -p "$KEYCHAIN_PASSWORD" $KEYCHAIN_PATH