fix: strip rc suffix from iOS marketing version (#28741)

This commit is contained in:
bo0tzz 2026-06-01 16:56:43 +02:00 committed by GitHub
parent c8a1d0e400
commit 61cd69a286
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -49,7 +49,7 @@ def get_version_from_pubspec
pubspec = YAML.load_file(pubspec_path)
version_string = pubspec['version']
version_string ? version_string.split('+').first : nil
version_string ? version_string.split('+').first.split('-').first : nil
end
# Helper method to configure code signing for all targets