File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -952,6 +952,18 @@ namespace :all do
952
952
Rake ::Task [ 'dotnet:release' ] . invoke ( args )
953
953
Rake ::Task [ 'node:release' ] . invoke ( args )
954
954
Rake ::Task [ 'create_release_notes' ] . invoke ( args )
955
+ Rake ::Task [ 'all:docs' ] . invoke
956
+ Rake ::Task [ 'all:version' ] . invoke ( [ 'nightly' ] )
957
+
958
+ puts "Staging nightly version updates"
959
+ @git . add ( [ 'java/version.bzl' , 'rb/lib/selenium/webdriver/version.rb' ] , all : true )
960
+ puts "Committing nightly version updates"
961
+ @git . commit ( 'updating versions to nightly' )
962
+ puts "Pushing changes to upstream repository"
963
+
964
+ print 'Do you want to commit the changes? (Y/n): '
965
+ response = STDIN . gets . chomp . downcase
966
+ @git . push if response == 'y' || response == 'yes'
955
967
end
956
968
957
969
desc 'File updates for versions and metadata'
You can’t perform that action at this time.
0 commit comments