| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- fastlane_version "1.37.0"
- default_platform :ios
- platform :ios do
- before_all do
- end
- desc "Runs all the tests"
- lane :test do
- scan(scheme: "Kingfisher", clean: true)
- scan(scheme: "Kingfisher-macOS", clean: true, destination: 'platform=macOS')
- scan(scheme: "Kingfisher-tvOS", clean: true)
- end
-
- desc "Lint"
- lane :lint do
- carthage(command: "build", no_skip_current: true)
- pod_lib_lint
- end
- desc "Release new version"
- lane :release do |options|
- target_version = options[:version]
- raise "The version is missed. Use `fastlane release version:{version_number}`.`" if target_version.nil?
- ensure_git_branch
- ensure_git_status_clean
-
- test
- lint
-
- sync_build_number_to_git
- increment_version_number(version_number: target_version)
- version_bump_podspec(path: "Kingfisher.podspec", version_number: target_version)
- log = extract_current_change_log(version: target_version)
- release_log = update_change_log(log: log)
- doc(version: target_version)
- git_commit_all(message: "Bump version to #{target_version}")
-
- Actions.sh("git tag -s #{target_version} -m ''")
- push_to_git_remote
- set_github_release(
- repository_name: "onevcat/Kingfisher",
- api_token: ENV['GITHUB_TOKEN'],
- name: release_log[:title],
- tag_name: target_version,
- description: release_log[:text]
- )
- pod_push
- end
- lane :podpush do
- pod_push
- end
- lane :doc do |options|
- target_version = options[:version]
- Actions.sh("cd .. && jazzy \
- --clean \
- --author \"Wei Wang\" \
- --author_url https://onevcat.com \
- --github_url https://github.com/onevcat/Kingfisher \
- --github-file-prefix https://github.com/onevcat/Kingfisher/tree/#{target_version} \
- --module-version #{target_version} \
- --module Kingfisher \
- --root-url http://onevcat.github.io/Kingfisher/ \
- --output docs/")
- end
- after_all do |lane|
- end
- error do |lane, exception|
- end
- end
|