diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ae6156f18..1f194362e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -382,7 +382,9 @@ jobs: - name: Publish Play Store bundle if: ${{ matrix.variant == 'prod' && matrix.artifact == 'aab' && (inputs.publish-to-play-store || github.ref_name == 'main') }} - run: bundle exec fastlane publishBetaToPlayStore + run: | + bundle exec fastlane publishProdToPlayStore + bundle exec fastlane publishBetaToPlayStore publish_fdroid: name: Publish F-Droid artifacts diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 64f95182a..f8657e02d 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -237,6 +237,17 @@ platform :android do ) end + desc "Publish Play Store Beta bundle to Google Play Store" + lane :publishProdToPlayStore do + upload_to_play_store( + package_name: "com.x8bit.bitwarden", + track: "internal", + release_status: "completed", + rollout: "1", + aab: "app/build/outputs/bundle/standardRelease/com.x8bit.bitwarden-standard-release.aab", + ) + end + desc "Generate release notes" lane :generateReleaseNotes do |options| branchName = `git rev-parse --abbrev-ref HEAD`.chomp()