We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 194293c commit 2a6c02bCopy full SHA for 2a6c02b
fastlane/Fastfile
@@ -8,7 +8,7 @@ lane :release do |options|
8
if options[:allow_dirty_branch] != true
9
ensure_git_status_clean
10
else
11
- Helper.log.info "Skipping the 'git status clean' check!".yellow
+ UI.message "Skipping the 'git status clean' check!".yellow
12
end
13
14
git_pull
@@ -23,7 +23,7 @@ lane :release do |options|
23
24
25
currentVersion = version_get_podspec()
26
- Helper.log.info "Current R.swift.Library podspec version is #{currentVersion}"
+ UI.message "Current R.swift.Library podspec version is #{currentVersion}"
27
28
bumpType = prompt(text: "What kind of release is this? (major/minor/patch/custom)".green, boolean: false, ci_input: "")
29
isPrerelease = false
0 commit comments