File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 15
15
# CERTIFICATE_PATH: ${{ env.RUNNER_TEMP }}/build_certificate.p12
16
16
TMP_CERT_PATH : signingCertificate.p12
17
17
# PP_PATH: ${{ env.RUNNER_TEMP }}/build_pp.mobileprovision
18
- KEYCHAIN_PATH : app-signing.keychain-db
18
+ KEYCHAIN_FILENAME : app-signing.keychain-db
19
19
20
20
jobs :
21
21
build :
36
36
37
37
- name : Apple signing setup - Step 1 (create temporary keychain)
38
38
run : |
39
- security create-keychain -p "${{ env.APPLE_KEYCHAIN_PASSWORD}}" ${{ env.RUNNER_TEMP }}/${{ env.KEYCHAIN_PATH }}
40
- security set-keychain-settings -lut 21600 ${{ env.RUNNER_TEMP }}/${{ env.KEYCHAIN_PATH }}
41
- security unlock-keychain -p "${{ env.APPLE_KEYCHAIN_PASSWORD}}" ${{ env.RUNNER_TEMP }}/${{ env.KEYCHAIN_PATH }}
39
+ security create-keychain -p "${{ env.APPLE_KEYCHAIN_PASSWORD}}" ${{ env.RUNNER_TEMP }}/${{ env.KEYCHAIN_FILENAME }}
40
+ security set-keychain-settings -lut 21600 ${{ env.RUNNER_TEMP }}/${{ env.KEYCHAIN_FILENAME }}
41
+ security unlock-keychain -p "${{ env.APPLE_KEYCHAIN_PASSWORD}}" ${{ env.RUNNER_TEMP }}/${{ env.KEYCHAIN_FILENAME }}
42
42
43
43
- name : Apple signing setup - Step 2 (import certificate and provisioning profile from secrets)
44
44
run : |
You can’t perform that action at this time.
0 commit comments