Skip to content

Commit

Permalink
Fix Rubocop offenses after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
iangmaia committed Oct 31, 2023
1 parent 282715c commit 1b03d61
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions fastlane/lanes/build.rb
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@
# Create the file names
app = get_app_name_option!(options)
version_name = current_version_name
build_bundle(app: app, version_name: version_name, build_code: current_build_code, flavor: 'Vanilla', buildType: 'Release')
build_bundle(app:, version_name:, build_code: current_build_code, flavor: 'Vanilla', buildType: 'Release')

upload_build_to_play_store(app: app, version_name: version_name, track: 'production')
upload_build_to_play_store(app:, version_name:, track: 'production')

create_gh_release(app: app, version_name: version_name) if options[:create_release]
create_gh_release(app:, version_name:) if options[:create_release]
end

#####################################################################################
Expand Down Expand Up @@ -102,11 +102,11 @@
# Create the file names
app = get_app_name_option!(options)
version_name = current_version_name
build_bundle(app: app, version_name: version_name, build_code: current_build_code, flavor: 'Vanilla', buildType: 'Release')
build_bundle(app:, version_name:, build_code: current_build_code, flavor: 'Vanilla', buildType: 'Release')

upload_build_to_play_store(app: app, version_name: version_name, track: 'beta') if options[:upload_to_play_store]
upload_build_to_play_store(app:, version_name:, track: 'beta') if options[:upload_to_play_store]

create_gh_release(app: app, version_name: version_name, prerelease: true) if options[:create_release]
create_gh_release(app:, version_name:, prerelease: true) if options[:create_release]
end

#####################################################################################
Expand Down Expand Up @@ -188,10 +188,10 @@
package_name = APP_SPECIFIC_VALUES[app.to_sym][:package_name]

download_universal_apk_from_google_play(
package_name: package_name,
version_code: build_code,
destination: signed_apk_path(app, current_version_name),
json_key: UPLOAD_TO_PLAY_STORE_JSON_KEY
package_name:,
version_code: build_code,
destination: signed_apk_path(app, current_version_name),
json_key: UPLOAD_TO_PLAY_STORE_JSON_KEY
)
end
end
Expand Down

0 comments on commit 1b03d61

Please sign in to comment.