Slide 60
Slide 60 text
default_platform(:mac)
platform :mac do
desc "Description of what the lane does"
lane :upload_to_appcenter do
archive_path_dir = ENV["CI_ARCHIVE_PATH"]
pkg_file = File.join(archive_path_dir, "Products", "Applications", "QReate.app")
dsym_file = File.join(archive_path_dir, "dSYMs", "QReate.app.dSYM")
appcenter_upload(
api_token: ENV["APP_CENTER_API_TOKEN"],
owner_name: "polpielladev",
app_name: "QReate",
release_notes: "Bug fixing and new features",
file: pkg_file,
dsym: dsym_file,
notify_testers: false
)
end
end