Skip to content

Commit

Permalink
wat
Browse files Browse the repository at this point in the history
  • Loading branch information
mhils committed Aug 23, 2023
1 parent 6bf6818 commit d5faa9f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/scripts/build-macos-redirector.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ if [ -n "${APPLE_ID+x}" ]; then
security set-keychain-settings -lut 21600 $KEYCHAIN_PATH
security unlock-keychain -p "app-signing" $KEYCHAIN_PATH
# Import certificate to keychain
security import <(echo -n "$APPLE_CERTIFICATE") -A -k $KEYCHAIN_PATH
# needs a temporary file, see https://github.com/orgs/community/discussions/63731#discussioncomment-6746600
echo -n "$APPLE_CERTIFICATE" > "$RUNNER_TEMP/cert"
security import "$RUNNER_TEMP/cert" -A -k $KEYCHAIN_PATH
security list-keychain -s $KEYCHAIN_PATH

mkdir build
Expand Down

0 comments on commit d5faa9f

Please sign in to comment.