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

pull/28410/merge
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
1 changed files with 1 additions and 1 deletions

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