This repository was archived by the owner on Sep 19, 2024. It is now read-only.
File tree 1 file changed +6
-16
lines changed
1 file changed +6
-16
lines changed Original file line number Diff line number Diff line change 1
1
fastlane_version "1.86.0"
2
2
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"
13
3
lane :release do |options |
14
4
ensure_git_branch ( branch : "master" )
15
5
@@ -62,12 +52,12 @@ lane :release do |options|
62
52
push_to_git_remote
63
53
64
54
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 } " ,
71
61
prerelease : isPrerelease
72
62
)
73
63
You can’t perform that action at this time.
0 commit comments