We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c4a4a7 commit d57304bCopy full SHA for d57304b
fastlane/lib/versions.rb
@@ -47,14 +47,14 @@ def propagate_version(**args)
47
UI.message "Propagating version: #{version}"
48
UI.message 'into the Info.plist and build.gradle files'
49
50
- version = '1.0.0' if should_nightly?
51
- UI.message "Actually using #{version} (because we're doing a nightly)"
52
-
53
# encode build number into js-land – we've already fetched it, so we'll
54
# never set the "+" into the binaries
55
unless version.include? '+'
56
set_package_data(data: { version: "#{version}+#{build}" })
57
end
+
+ version = '1.0.0' if should_nightly?
+ UI.message "Actually putting #{version} into the binaries (because we're doing a nightly)"
58
59
case lane_context[:PLATFORM_NAME]
60
when :android
0 commit comments