Skip to content

Commit

Permalink
fix(fastlane): set changes_not_sent_for_review arg
Browse files Browse the repository at this point in the history
Signed-off-by: Teclib <[email protected]>
  • Loading branch information
stonebuzz committed Sep 30, 2021
1 parent 1648e3e commit 19d675f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,20 +34,23 @@ platform :android do
track: 'beta',
apk: "app/build/outputs/apk/release/appCertified.apk",
skip_upload_aab: true
changes_not_sent_for_review: true
)
end
lane :alpha do |options|
supply(
track: 'alpha',
apk: "app/build/outputs/apk/release/appCertified.apk",
skip_upload_aab: true
changes_not_sent_for_review: true
)
end
lane :playstore do |options|
supply(
track: 'production',
apk: "app/build/outputs/apk/release/appCertified.apk",
skip_upload_aab: true
changes_not_sent_for_review: true
)
end
end
Expand Down

0 comments on commit 19d675f

Please sign in to comment.