mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-09-16 16:33:38 +08:00
11 lines
315 B
Ruby
11 lines
315 B
Ruby
default_platform(:ios)
|
|
|
|
platform :ios do
|
|
desc "Push a new release build to the App Store"
|
|
lane :release do
|
|
increment_build_number(build_number: number_of_commits)
|
|
build_app(workspace: "Runner.xcworkspace", scheme: "Runner")
|
|
upload_to_app_store(skip_metadata: true, skip_screenshots: true)
|
|
end
|
|
end
|