Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions fastlane/FastfileDeploy
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,14 @@ platform :ios do
ENV["APP_CONF_DEVELOP"] => {
tag_prefix: "dev",
add_badge: true,
app_info: "Debug"
app_info: "Debug",
bundle_id: "io.anytype.app.dev"
},
ENV["APP_CONF_RELEASE_ANYTYPE"] => {
tag_prefix: "release-anytype",
add_badge: false,
app_info: "Release Anytype"
app_info: "Release Anytype",
bundle_id: "io.anytype.app"
}
}

Expand Down Expand Up @@ -147,6 +149,9 @@ platform :ios do
end
end

bundle_id = settings[:bundle_id]
ENV["DELIVER_ALTOOL_ADDITIONAL_UPLOAD_PARAMETERS"] = "--apple-id #{bundle_id} --use-old-altool"

upload_to_testflight(skip_waiting_for_build_processing: true)

github_message = "Anytype #{appInfo} Version: **#{version}(#{build_number})** :gem::gem::gem:"
Expand Down