Skip to content

Commit

Permalink
Deploy in bitrise
Browse files Browse the repository at this point in the history
  • Loading branch information
fassko committed Dec 8, 2018
1 parent aa245c4 commit fe4cf0e
Showing 1 changed file with 7 additions and 29 deletions.
36 changes: 7 additions & 29 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,17 @@ platform :ios do
end

desc "CI build"
lane :ci_build do
# certificates
lane :build_for_release do
increment_build_number build_number: get_version_number + "." + Time.new.strftime("%y%m%d.%H%M")

# test
derived_data

gym(
workspace: "Dodies.lv.xcworkspace",
scheme: "Dodies.lv",
clean: true
clean: true,
output_name: "Dodies.lv.ipa",
include_symbols: true
)
end

Expand All @@ -41,37 +43,13 @@ platform :ios do
)
end

desc "Circle CI lane"
lane :circleci do
setup_circle_ci
certificates
ci_build
end

desc "Travis lane"
lane :travis do
setup_travis
certificates
ci_build
end

desc "Derived data"
lane :derived_data do
clear_derived_data
end

lane :release do
increment_build_number build_number: get_version_number + "." + Time.new.strftime("%y%m%d.%H%M")

derived_data

gym(
workspace: "Dodies.lv.xcworkspace",
scheme: "Dodies.lv",
clean: true,
output_name: "Dodies.lv.ipa",
include_symbols: true
)
build_for_release

testflight(
skip_waiting_for_build_processing: true
Expand Down

0 comments on commit fe4cf0e

Please sign in to comment.