Skip to content

Commit

Permalink
[GH Actions] Fix base64 command options for macOS 13
Browse files Browse the repository at this point in the history
Summary:
Change in `base64` command is causing iOS workflow to fail.

Luckily I've run into this before (atulsmadhugiri/Blob@abca30d) and fix is straightforward.

Test Plan: Land and see what happens.

Reviewers: ashoat, tomek, bartek, varun

Reviewed By: varun

Subscribers: wyilio

Differential Revision: https://phab.comm.dev/D9540
  • Loading branch information
atulsmadhugiri committed Oct 19, 2023
1 parent 1a83501 commit 3fd0cc5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ios_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
KEYCHAIN_PATH=$RUNNER_TEMP/app-signing.keychain-db
# import certificate from secrets
echo -n "$BUILD_CERTIFICATE_BASE64" | base64 --decode --output $CERTIFICATE_PATH
echo -n "$BUILD_CERTIFICATE_BASE64" | base64 --decode -o $CERTIFICATE_PATH
# create temporary keychain
security create-keychain -p "$KEYCHAIN_PASSWORD" $KEYCHAIN_PATH
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ios_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
KEYCHAIN_PATH=$RUNNER_TEMP/app-signing.keychain-db
# import certificate from secrets
echo -n "$BUILD_CERTIFICATE_BASE64" | base64 --decode --output $CERTIFICATE_PATH
echo -n "$BUILD_CERTIFICATE_BASE64" | base64 --decode -o $CERTIFICATE_PATH
# create temporary keychain
security create-keychain -p "$KEYCHAIN_PASSWORD" $KEYCHAIN_PATH
Expand Down

0 comments on commit 3fd0cc5

Please sign in to comment.