Skip to content

Commit

Permalink
Merge branch 'develop' into 'master'
Browse files Browse the repository at this point in the history
CI fixes

See merge request sschueller/peertube!5
  • Loading branch information
sschueller committed Sep 26, 2020
2 parents 87fd659 + 578b5dd commit 6218191
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Empty file modified ci-scripts/make-github-release.sh
100644 → 100755
Empty file.
6 changes: 3 additions & 3 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,17 +41,17 @@ platform :android do

desc "Promote Internal to Alpha"
lane :promote_internal_to_alpha do
upload_to_play_store(track: 'internal', track_promote_to: 'alpha')
upload_to_play_store(track: 'internal', track_promote_to: 'alpha', skip_upload_changelogs: true)
end

desc "Promote Alpha to Beta"
lane :promote_alpha_to_beta do
upload_to_play_store(track: 'alpha', track_promote_to: 'beta')
upload_to_play_store(track: 'alpha', track_promote_to: 'beta', skip_upload_changelogs: true)
end

desc "Promote Beta to Production"
lane :promote_beta_to_production do
upload_to_play_store(track: 'beta', track_promote_to: 'production')
upload_to_play_store(track: 'beta', track_promote_to: 'production', skip_upload_changelogs: true)
end

end

0 comments on commit 6218191

Please sign in to comment.