From 81f63dd29abfc61d8c2d3ad464f2129b59d8d769 Mon Sep 17 00:00:00 2001 From: Geoff Hutchison Date: Mon, 1 Jul 2024 14:47:04 -0400 Subject: [PATCH] Try fixing Mac certificate signing again from base64 error Signed-off-by: Geoff Hutchison --- .github/workflows/build_cmake.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_cmake.yml b/.github/workflows/build_cmake.yml index 0849982578..24328ad3fc 100644 --- a/.github/workflows/build_cmake.yml +++ b/.github/workflows/build_cmake.yml @@ -235,7 +235,7 @@ 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_CERTIFICATE_BASE64" | base64 -d -o $CERTIFICATE_PATH # create temporary keychain if the cert is non-zero if [ -s $CERTIFICATE_PATH ]; then