Skip to content

Commit

Permalink
Added options plist; Updated release to support multiple provisioning…
Browse files Browse the repository at this point in the history
… profiles;
  • Loading branch information
stef-coenen committed Jul 17, 2024
1 parent caa92b5 commit ab5599b
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,15 @@ jobs:
with:
project-path: packages/mobile/ios/HomebaseFeed.xcodeproj
p12-base64: ${{ secrets.IOS_P12_BASE64 }}
mobileprovision-base64: ${{ secrets.FEED_IOS_MOBILE_PROVISION_BASE64 }}
mobileprovision-base64: |
${{ secrets.FEED_IOS_MOBILE_PROVISION_BASE64 }}
${{ secrets.FEED_APP_GROUP_IOS_MOBILE_PROVISION_BASE64 }}
code-signing-identity: 'iPhone Distribution'
team-id: ${{ secrets.IOS_TEAM_ID }}
certificate-password: ${{ secrets.IOS_CERTIFICATE_PASSWORD }}
workspace-path: packages/mobile/ios/HomebaseFeed.xcworkspace
scheme: HomebaseFeed
export-options: packages/mobile/ios/options.plist

- name: Rename output
run: mv output.ipa homebase-feed.ipa
Expand Down
17 changes: 17 additions & 0 deletions packages/mobile/ios/options.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>method</key>
<string>adhoc</string>
<key>teamID</key>
<string>JNJ85M8JM6</string>
<key>provisioningProfiles</key>
<dict>
<key>id.homebase.feed</key>
<string>Homebase Feed - Full Distribution</string>
<key>id.homebase.feed.HomebaseFeedShare</key>
<string>Homebase Feed App Group - Full Distribution</string>
</dict>
</dict>
</plist>

0 comments on commit ab5599b

Please sign in to comment.