From 04676339ccce5fe1c19f7198191d4e5d517616c4 Mon Sep 17 00:00:00 2001 From: Ruben Hoenle Date: Tue, 17 Jun 2025 15:14:46 +0200 Subject: [PATCH] fix(ci): increase keychain timeout for release workflow --- .github/workflows/release.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 0bddeed42..09d8ce121 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -48,6 +48,8 @@ jobs: security create-keychain -p "${{ secrets.TEMP_KEYCHAIN }}" $KEYCHAIN_PATH security default-keychain -s $KEYCHAIN_PATH security unlock-keychain -p "${{ secrets.TEMP_KEYCHAIN }}" $KEYCHAIN_PATH + # the keychain gets locked automatically after 300s, so we have to extend this interval to e.g. 900 seconds + security set-keychain-settings -lut 900 security import ./ApplicationID.p12 -P "${{ secrets.APPLICATION_ID }}" -A -t cert -f pkcs12 -k $KEYCHAIN_PATH security list-keychain -d user -s $KEYCHAIN_PATH echo -n $AUTHKEY_BASE64 | base64 -d -o ./AuthKey.p8