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 931e911 commit ef4a799Copy full SHA for ef4a799
1 file changed
scripts/build-release.sh
@@ -501,6 +501,13 @@ build_for_arch() {
501
done
502
fi
503
504
+ # Embed provisioning profile (required for iCloud entitlements)
505
+ PROFILE=$(find ~/Library/MobileDevice/Provisioning\ Profiles -name "*.provisionprofile" -print -quit 2>/dev/null)
506
+ if [ -n "$PROFILE" ]; then
507
+ echo "📋 Embedding provisioning profile: $(basename "$PROFILE")"
508
+ cp "$PROFILE" "$BUILD_DIR/$OUTPUT_NAME/Contents/embedded.provisionprofile"
509
+ fi
510
+
511
# Sign the app bundle last
512
codesign -fs "$SIGN_IDENTITY" --force --options runtime --timestamp --entitlements "TablePro/TablePro.entitlements" "$BUILD_DIR/$OUTPUT_NAME"
513
echo "✅ Code signing complete"
0 commit comments