Skip to content

Commit

Permalink
Remove unavailable actions from build_and_upload_release
Browse files Browse the repository at this point in the history
  • Loading branch information
mokagio committed Aug 30, 2024
1 parent 0d2db85 commit c2adbff
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ platform :android do

push_to_git_remote(tags: false)

build_and_upload_release(create_release: true, skip_confirm: skip_confirm)
build_and_upload_release(create_release: true)

create_release_backmerge_pr(version_to_merge: version, next_version: release_version_next)

Expand Down Expand Up @@ -425,16 +425,13 @@ platform :android do
end

desc 'Builds and updates for distribution'
lane :build_and_upload_release do |create_release:, skip_confirm: false|
android_build_prechecks(
skip_confirm: skip_confirm,
alpha: false,
beta: false,
final: true
)
lane :build_and_upload_release do |create_release:|
ensure_git_status_clean unless is_ci
ensure_git_branch_is_release_branch!

# We want the full version name, including the rc prefix
version = VERSION_FILE.read_version_name

# Create the file names
version = android_get_release_version
build_and_upload_apk(
version: version,
upload_track: 'production'
Expand Down

0 comments on commit c2adbff

Please sign in to comment.