Retain release notes if no_log:true

This commit is contained in:
Davide 2025-02-05 17:05:03 +01:00
parent 9d9c738b23
commit 3a4169f8fa
No known key found for this signature in database
GPG Key ID: A48836171C759F5E

View File

@ -61,7 +61,9 @@ lane :bump do |options|
unless version.nil? || version.empty?
xcconfig_set("../#{xcconfig}", "MARKETING_VERSION", version)
end
system("../scripts/copy-release-notes.sh")
unless options[:no_log]
system("../scripts/copy-release-notes.sh")
end
git_commit(
path: [
xcconfig,