We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8229494 commit fd64ac2Copy full SHA for fd64ac2
.github/workflows/app_build.yml
@@ -218,11 +218,7 @@ jobs:
218
219
# ----- Configure Keychain -----
220
KEYCHAIN_PATH=$RUNNER_TEMP/app-signing.keychain-db
221
- if [[ -f $KEYCHAIN_PATH ]]; then
222
- echo "Removing previous keychain-db at ${KEYCHAIN_PATH}"
223
- security delete-keychain $KEYCHAIN_PATH
224
- rm -f $KEYCHAIN_PATH
225
- fi
+ security delete-keychain $KEYCHAIN_PATH || true
226
security create-keychain -p "${{ secrets.MACOS_KEYCHAIN_PASSWORD }}" $KEYCHAIN_PATH
227
# Unlock it for 6 hours
228
security set-keychain-settings -lut 21600 $KEYCHAIN_PATH
0 commit comments