| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- module Fastlane
- module Actions
- module SharedValues
- KF_BUILD_NUMBER = :BUILD_NUMBER
- end
- class SyncBuildNumberToGitAction < Action
- def self.is_git?
- Actions.sh 'git rev-parse HEAD'
- return true
- rescue
- return false
- end
-
- def self.run(params)
- if is_git?
- command = 'git rev-list HEAD --count'
- else
- raise "Not in a git repository."
- end
- build_number = (Actions.sh command).strip
- Fastlane::Actions::IncrementBuildNumberAction.run(build_number: build_number)
- Actions.lane_context[SharedValues::KF_BUILD_NUMBER] = build_number
- end
- def self.output
- [
- ['KF_BUILD_NUMBER', 'The new build number']
- ]
- end
- #####################################################
- # @!group Documentation
- #####################################################
- def self.description
- "Set the build version of your project to the same number of your total git commit count"
- end
- def self.authors
- ["onevcat"]
- end
- def self.is_supported?(platform)
- [:ios, :mac].include? platform
- end
- end
- end
- end
|