Merge pull request '[macos-runner] Unlock login keychain explicitly before fastlane signing steps' (#28) from ci/gitea-actions/macos-runner into main

Reviewed-on: Loverde-Company-LTDA/Pedi-Foods-Skip#28
This commit is contained in:
2026-07-30 18:22:43 -03:00
2 changed files with 6 additions and 0 deletions

View File

@@ -47,6 +47,9 @@ jobs:
} }
EOF EOF
- name: Unlock keychain
run: security unlock-keychain -p "${{ secrets.MAC_KEYCHAIN_PASSWORD }}" ~/Library/Keychains/login.keychain-db
- name: fastlane beta - name: fastlane beta
run: | run: |
cd Darwin cd Darwin

View File

@@ -54,6 +54,9 @@ jobs:
} }
EOF EOF
- name: Unlock keychain
run: security unlock-keychain -p "${{ secrets.MAC_KEYCHAIN_PASSWORD }}" ~/Library/Keychains/login.keychain-db
- name: fastlane release - name: fastlane release
run: | run: |
cd Darwin cd Darwin