Skip to content

Commit

Permalink
removed export_options from gym
Browse files Browse the repository at this point in the history
  • Loading branch information
Talhaali00 committed Mar 17, 2024
1 parent 671626b commit e7e7c3b
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -142,21 +142,23 @@ platform :ios do
)
update_project_provisioning(
xcodeproj: "Example/ExampleApp.xcodeproj",
profile: "/Users/runner/Library/MobileDevice/Provisioning Profiles/a6ba4083-a6fd-4d4f-b2f1-4098d8234e42.mobileprovision",
profile: ENV["sigh_com.walletconnect.dapp_appstore_profile-path"],
build_configuration: "Release"
)

# export_options: {
# signingStyle: "automatic",
# provisioningProfiles: {
# "com.walletconnect.dapp": "match AppStore com.walletconnect.dapp"
# },
# "com.walletconnect.dapp": "match AppStore com.walletconnect.dapp"
# },
# allowProvisioningUpdates: true
# },

gym(
configuration: "Release",
project: "Example/ExampleApp.xcodeproj",
scheme: ENV["SCHEME"],
export_method: "app-store",
export_options: {
signingStyle: "automatic",
allowProvisioningUpdates: true
},
xcargs: "RELAY_HOST='#{options[:relay_host]}' PROJECT_ID='#{options[:project_id]}' WALLETAPP_SENTRY_DSN='#{options[:sentry_dsn]}' MIXPANEL_TOKEN='#{options[:mixpanel_token]}'"
)
upload_to_testflight(
Expand Down

0 comments on commit e7e7c3b

Please sign in to comment.