Skip to content

Commit

Permalink
ci: Fix Apple certificate setup on macOS 13
Browse files Browse the repository at this point in the history
The base64 tool doesn't support the long form options.
  • Loading branch information
oleavr committed May 8, 2024
1 parent 8ba65c8 commit 1b55da8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/setup-apple-certificates/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ runs:
run: |
CERTIFICATE_PATH=$RUNNER_TEMP/apple-certificates.p12
KEYCHAIN_PATH=$RUNNER_TEMP/frida-signing.keychain-db
echo -n "$CERTIFICATES_P12" | base64 --decode --output $CERTIFICATE_PATH
echo -n "$CERTIFICATES_P12" | base64 -d -o $CERTIFICATE_PATH
security create-keychain -p "$KEYCHAIN_PASSWORD" $KEYCHAIN_PATH
security set-keychain-settings -lut 21600 $KEYCHAIN_PATH
security unlock-keychain -p "$KEYCHAIN_PASSWORD" $KEYCHAIN_PATH
Expand Down

0 comments on commit 1b55da8

Please sign in to comment.