This repository was archived by the owner on Sep 19, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +6
-16
lines changed
Expand file tree Collapse file tree 1 file changed +6
-16
lines changed Original file line number Diff line number Diff line change 11fastlane_version "1.86.0"
22
3- desc "Tags a new version of R.swift.Library and releases it to cocoapods"
4- desc " * GITHUB_API_TOKEN must be available in environment, create one on https://github.com/settings/tokens"
5- desc "This lane should be run from your local machine, and will push a tag to the remote when finished."
6- desc " * Verifies the git branch is clean"
7- desc " * Ensures the lane is running on the master branch"
8- desc " * Pulls the remote to verify the latest the branch is up to date"
9- desc " * Asks for the new version number"
10- desc " * Commit, tag and release library to cocoapods"
11- desc "####Options"
12- desc " * **`allow_dirty_branch`**: Allows the git branch to be dirty before continuing. Defaults to false"
133lane :release do |options |
144 ensure_git_branch ( branch : "master" )
155
@@ -62,12 +52,12 @@ lane :release do |options|
6252 push_to_git_remote
6353
6454 af_create_github_release (
65- owner : ' mac-cain13' ,
66- repository : ' r.swift.library' ,
67- tag_name : ' v#{newVersion}' ,
68- target_commitish : ' master' ,
69- name : ' #{newVersion}' ,
70- body : ' #{changelog}' ,
55+ owner : " mac-cain13" ,
56+ repository : " r.swift.library" ,
57+ tag_name : " v#{ newVersion } " ,
58+ target_commitish : " master" ,
59+ name : " #{ newVersion } " ,
60+ body : " #{ changelog } " ,
7161 prerelease : isPrerelease
7262 )
7363
You can’t perform that action at this time.
0 commit comments