Skip to content

Commit

Permalink
Update ios.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
xivilay authored Jan 6, 2024
1 parent 1b38824 commit c3933de
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ env:
#CERTIFICATE_PATH: ${{ env.RUNNER_TEMP }}/build_certificate.p12
TMP_CERT_PATH: signingCertificate.p12
#PP_PATH: ${{ env.RUNNER_TEMP }}/build_pp.mobileprovision
KEYCHAIN_PATH: app-signing.keychain-db
KEYCHAIN_FILENAME: app-signing.keychain-db

jobs:
build:
Expand All @@ -36,9 +36,9 @@ jobs:

- name: Apple signing setup - Step 1 (create temporary keychain)
run: |
security create-keychain -p "${{ env.APPLE_KEYCHAIN_PASSWORD}}" ${{ env.RUNNER_TEMP }}/${{ env.KEYCHAIN_PATH }}
security set-keychain-settings -lut 21600 ${{ env.RUNNER_TEMP }}/${{ env.KEYCHAIN_PATH }}
security unlock-keychain -p "${{ env.APPLE_KEYCHAIN_PASSWORD}}" ${{ env.RUNNER_TEMP }}/${{ env.KEYCHAIN_PATH }}
security create-keychain -p "${{ env.APPLE_KEYCHAIN_PASSWORD}}" ${{ env.RUNNER_TEMP }}/${{ env.KEYCHAIN_FILENAME }}
security set-keychain-settings -lut 21600 ${{ env.RUNNER_TEMP }}/${{ env.KEYCHAIN_FILENAME }}
security unlock-keychain -p "${{ env.APPLE_KEYCHAIN_PASSWORD}}" ${{ env.RUNNER_TEMP }}/${{ env.KEYCHAIN_FILENAME }}
- name: Apple signing setup - Step 2 (import certificate and provisioning profile from secrets)
run: |
Expand Down

0 comments on commit c3933de

Please sign in to comment.