You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
lane :beta do
gym(scheme: "HaveAdHoc", clean: true, use_legacy_build_api: true, export_method: "ad-hoc", output_directory: "~/Desktop/", output_name: "HaveAdHoc", silent: true)
# Build your app - more options available
commitmsg = changelog_from_git_commits(
pretty: '- (%ae) %s', # Optional, lets you provide a custom format to apply to each commit when generating the changelog text
include_merges: false # Optional, lets you filter out merge commits
)
slack(
message: commitmsg,
channel: "#newversion", # Optional, by default will post to the default channel configured for the POST URL.
success: true, # Optional, defaults to true.
payload: { # Optional, lets you specify any number of your own Slack attachments.
'Build Date' => Time.new.to_s,
'Built by' => 'qiuqiu',
},
)
add_git_tag(
tag: Time.new.strftime("%Y%jT%H%MZ"),
)
sh “your upload script"
slack(
message: “down load from here http://xxxxx",
channel: "#newversion", # Optional, by default will post to the default channel configured for the POST URL.
)
end
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: