Cleanup production build steps (#1423)

This commit is contained in:
Patrick Honkonen 2024-06-04 18:50:59 -04:00 committed by Álison Fernandes
parent 4fb27fe183
commit 1c57bf90ba
2 changed files with 1 additions and 5 deletions

View file

@ -368,7 +368,7 @@ jobs:
bundle exec fastlane run validate_play_store_json_key
- name: Publish Play Store bundle
if: ${{ matrix.variant == 'prod' && inputs.publish-to-play-store }}
if: ${{ matrix.variant == 'prod' && matrix.artifact == 'aab' && inputs.publish-to-play-store }}
run: bundle exec fastlane publishForInternalTesting
publish_fdroid:

View file

@ -131,10 +131,6 @@ platform :android do
nextVersionName = options[:versionName].to_s
end
# Append "-native" to the builds so they are easily distinguished from MAUI builds while both
# are being distributed.
nextVersionName = nextVersionName + "-native"
# Replace version information.
puts "Setting version code to #{options[:versionCode]}."
buildConfigText.gsub!("versionCode = #{currentVersionCode}", "versionCode = #{options[:versionCode]}")