Skip to content

Commit

Permalink
ci: Skip uploading screenshots and images
Browse files Browse the repository at this point in the history
  • Loading branch information
krille-chan committed Sep 18, 2023
1 parent f6ad1c0 commit 2713b38
Showing 1 changed file with 24 additions and 4 deletions.
28 changes: 24 additions & 4 deletions android/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,36 @@ platform :android do
track: 'internal',
aab: '../build/app/outputs/bundle/release/app-release.aab',
version_code: "#{last_version+1}",
# Set root url as workaround for https://github.com/fastlane/fastlane/issues/21507#issuecomment-1720229951
root_url: "https://androidpublisher.googleapis.com/"
# Workaround for https://github.com/fastlane/fastlane/issues/21507#issuecomment-1720229951
root_url: "https://androidpublisher.googleapis.com/",
skip_upload_images: true,
skip_upload_screenshots: true
)
end

lane :deploy_candidate do
upload_to_play_store(track: 'internal', track_promote_to: "beta", deactivate_on_promote: false, skip_upload_changelogs: true)
upload_to_play_store(
track: 'internal',
track_promote_to: "beta",
deactivate_on_promote: false,
skip_upload_changelogs: true,
# Workaround for https://github.com/fastlane/fastlane/issues/21507#issuecomment-1720229951
root_url: "https://androidpublisher.googleapis.com/",
skip_upload_images: true,
skip_upload_screenshots: true
)
end

lane :deploy_release do
upload_to_play_store(track: 'internal', track_promote_to: "production", deactivate_on_promote: false, skip_upload_changelogs: true)
upload_to_play_store(
track: 'internal',
track_promote_to: "production",
deactivate_on_promote: false,
skip_upload_changelogs: true,
# Workaround for https://github.com/fastlane/fastlane/issues/21507#issuecomment-1720229951
root_url: "https://androidpublisher.googleapis.com/",
skip_upload_images: true,
skip_upload_screenshots: true
)
end
end

0 comments on commit 2713b38

Please sign in to comment.