diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 90aeca41a7..dda88a64e0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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: diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 6b8101d992..e21481f580 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -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]}")