mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 07:05:35 +03:00
Cleanup production build steps (#1423)
This commit is contained in:
parent
4fb27fe183
commit
1c57bf90ba
2 changed files with 1 additions and 5 deletions
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
@ -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:
|
||||
|
|
|
@ -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]}")
|
||||
|
|
Loading…
Reference in a new issue