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 7a990bf commit bd9167eCopy full SHA for bd9167e
.github/workflows/release.yaml
@@ -48,6 +48,8 @@ jobs:
48
security create-keychain -p "${{ secrets.TEMP_KEYCHAIN }}" $KEYCHAIN_PATH
49
security default-keychain -s $KEYCHAIN_PATH
50
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
53
security import ./ApplicationID.p12 -P "${{ secrets.APPLICATION_ID }}" -A -t cert -f pkcs12 -k $KEYCHAIN_PATH
54
security list-keychain -d user -s $KEYCHAIN_PATH
55
echo -n $AUTHKEY_BASE64 | base64 -d -o ./AuthKey.p8
0 commit comments