Compare commits

...

8 Commits

Author SHA1 Message Date
Andy Pixley
23b745991a Adding debug info 2025-08-07 14:44:51 -04:00
Amy Galles
302602a933 remove misleading ui message 2025-08-07 11:38:40 -07:00
Amy Galles
a79634e34b remove debugging text 2025-08-07 11:28:00 -07:00
Amy Galles
f77839e758 adding error for invalid package name 2025-08-07 11:24:30 -07:00
Amy Galles
a0874a7c4f pass package name to format release notes 2025-08-07 11:23:24 -07:00
Amy Galles
aa9e151a0b debugging localization bug 2025-08-07 11:19:45 -07:00
Amy Galles
df2c7039b2 debugging localization bug 2025-08-07 11:18:26 -07:00
Amy Galles
44fdbec92c debugging localization bug 2025-08-07 11:14:40 -07:00
3 changed files with 10 additions and 2 deletions

View File

@@ -147,7 +147,8 @@ jobs:
bundle exec fastlane updateReleaseNotes \
releaseNotes:"$RELEASE_NOTES" \
versionCode:"$VERSION_CODE"
versionCode:"$VERSION_CODE" \
packageName:"$PACKAGE_NAME"
bundle exec fastlane promoteToProduction \
versionCode:"$VERSION_CODE" \

View File

@@ -387,9 +387,13 @@ platform :android do
pw_manager_locales = ["ca", "cs-CZ", "da-DK", "de-DE", "en-US", "es-ES", "et", "fr-FR", "hr", "hu-HU", "id", "it-IT", "iw-IL", "ja-JP", "nl-NL", "pl-PL", "pt-BR", "pt-PT", "ro", "ru-RU", "sk", "sv-SE", "tr-TR", "uk", "vi", "zh-CN", "zh-TW"]
if options[:packageName] == "com.bitwarden.authenticator"
locales = auth_locales
elsif options[:packageName] == "com.x8bit.bitwarden" || options[:packageName] == "com.x8bit.bitwarden.beta"
locales = pw_manager_locales
else
UI.important "Unexpected package name: #{options[:packageName]}, using default locales"
locales = pw_manager_locales
end
locales.each do |locale|
dir = "metadata/android/#{locale}/changelogs"
FileUtils.mkdir_p(dir)

View File

@@ -26,7 +26,7 @@ module Supply
end
releases = track_from.releases
UI.message("Track contents: #{track_from.to_json}")
# UI.message("Track contents: #{track_from.to_json}")
version_code = Supply.config[:version_code].to_s
if !Supply.config[:skip_release_verification]
@@ -79,6 +79,9 @@ module Supply
release.user_fraction = nil
end
UI.message("Promoting release with version code: #{release.version_codes.first}")
UI.message("Promoting release with version name: #{release.name}")
if track_to
# Its okay to set releases to an array containing the newest release
# Google Play will keep previous releases there this release is a partial rollout