Skip to content

Commit dda1386

Browse files
committed
Fix decode command for macOS 13
1 parent 881421f commit dda1386

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/Archive.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ jobs:
2828
KEYCHAIN_PATH=$RUNNER_TEMP/app-signing.keychain-db
2929
3030
# import certificate and provisioning profile from secrets
31-
echo -n "$BUILD_CERTIFICATE_BASE64" | base64 --decode --output $CERTIFICATE_PATH
32-
echo -n "$BUILD_PROVISION_PROFILE_BASE64" | base64 --decode --output $PP_PATH
31+
echo -n "$BUILD_CERTIFICATE_BASE64" | base64 --decode -o $CERTIFICATE_PATH
32+
echo -n "$BUILD_PROVISION_PROFILE_BASE64" | base64 --decode -o $PP_PATH
3333
3434
# create temporary keychain
3535
security create-keychain -p "$KEYCHAIN_PASSWORD" $KEYCHAIN_PATH

0 commit comments

Comments
 (0)