Skip to content

Commit bd9167e

Browse files
authored
fix(ci): increase keychain timeout for release workflow (#804)
1 parent 7a990bf commit bd9167e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/release.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ jobs:
4848
security create-keychain -p "${{ secrets.TEMP_KEYCHAIN }}" $KEYCHAIN_PATH
4949
security default-keychain -s $KEYCHAIN_PATH
5050
security unlock-keychain -p "${{ secrets.TEMP_KEYCHAIN }}" $KEYCHAIN_PATH
51+
# the keychain gets locked automatically after 300s, so we have to extend this interval to e.g. 900 seconds
52+
security set-keychain-settings -lut 900
5153
security import ./ApplicationID.p12 -P "${{ secrets.APPLICATION_ID }}" -A -t cert -f pkcs12 -k $KEYCHAIN_PATH
5254
security list-keychain -d user -s $KEYCHAIN_PATH
5355
echo -n $AUTHKEY_BASE64 | base64 -d -o ./AuthKey.p8

0 commit comments

Comments
 (0)