You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm on fastlane-plugin-versioning (0.7.0) and fastlane 2.225.0.
I have defined a a simple lane to automate bumping patch version in my project. It's a part of an automated routine I would like to use to bump version, commit and create PR.
The lane looks like that:
lane :patch_version_bump do |options|
increment_version_number_in_xcodeproj(
xcodeproj: projectFileName,
bump_type: 'patch'
)
end
However, the invocation results not only in changing the MARKETING_VERSION value but also changes comments on build plugins included from:
I'm on
fastlane-plugin-versioning (0.7.0)
and fastlane2.225.0
.I have defined a a simple lane to automate bumping patch version in my project. It's a part of an automated routine I would like to use to bump version, commit and create PR.
The lane looks like that:
However, the invocation results not only in changing the MARKETING_VERSION value but also changes comments on build plugins included from:
to
Is there a way to prevent that?
The text was updated successfully, but these errors were encountered: