Download provisioning profiles in release pipeline
This commit is contained in:
parent
62a5739d86
commit
fa1ef6fcda
4 changed files with 22 additions and 18 deletions
7
.github/actions/download-profiles/action.yml
vendored
7
.github/actions/download-profiles/action.yml
vendored
|
|
@ -13,15 +13,18 @@ runs:
|
|||
using: composite
|
||||
steps:
|
||||
- shell: bash
|
||||
env:
|
||||
FASTLANE_OPT_OUT_USAGE: 'YES'
|
||||
run: |
|
||||
APP_STORE_KEY=$(echo "${{ inputs.app-store-key }}" | jq -sR .)
|
||||
cat << EOF > api-key.json
|
||||
{
|
||||
"key_id": "${{ inputs.app-store-key-id }}",
|
||||
"issuer_id": "${{ inputs.app-store-key-issuer-id }}",
|
||||
"key": "${{ inputs.app-store-key }}"
|
||||
"key": $APP_STORE_KEY
|
||||
}
|
||||
EOF
|
||||
|
||||
fastlane sigh download_all --api_key_path api-key.json --download_xcode_profiles
|
||||
fastlane sigh download_all --api_key_path api-key.json
|
||||
|
||||
rm -rf api-key.json
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue