We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94971f4 commit 4555561Copy full SHA for 4555561
1 file changed
.github/workflows/release-ios.yml
@@ -77,8 +77,10 @@ jobs:
77
run: |
78
PROFILE_PATH=$RUNNER_TEMP/profile.mobileprovision
79
echo -n "$IOS_PROVISION_PROFILE" | base64 --decode -o "$PROFILE_PATH"
80
+ # Extract UUID from profile and copy with UUID-based filename (required by Xcode)
81
+ PROFILE_UUID=$(/usr/libexec/PlistBuddy -c "Print UUID" /dev/stdin <<< "$(security cms -D -i "$PROFILE_PATH")")
82
mkdir -p ~/Library/MobileDevice/Provisioning\ Profiles
- cp "$PROFILE_PATH" ~/Library/MobileDevice/Provisioning\ Profiles/
83
+ cp "$PROFILE_PATH" ~/Library/MobileDevice/Provisioning\ Profiles/"$PROFILE_UUID".mobileprovision
84
85
- name: Sync version to Xcode project
86
0 commit comments