Update pipelines with various fixes

This commit is contained in:
Conrad Kramer 2024-09-07 17:01:17 -07:00
parent aa634d03e2
commit 423ed3535e
9 changed files with 65 additions and 57 deletions

View file

@ -0,0 +1,27 @@
name: Download Provisioning Profiles
inputs:
app-store-key:
description: App Store key in PEM PKCS#8 format
required: true
app-store-key-id:
description: App Store key ID
required: true
app-store-key-issuer-id:
description: App Store key issuer ID
required: true
runs:
using: composite
steps:
- shell: bash
run: |
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 }}"
}
EOF
fastlane sigh download_all --api_key_path api-key.json --download_xcode_profiles
rm -rf api-key.json