File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ jobs:
103
103
- name : Commit version updates
104
104
run : git commit -m "bump versions in preparation for release"
105
105
- name : Update changelog
106
- run : ./go all:changelog
106
+ run : ./go all:changelogs
107
107
- name : Commit changelog updates
108
108
run : git commit -m "WIP - rough auto-update of changelog, please edit"
109
109
- name : List untracked files
Original file line number Diff line number Diff line change 166
166
desc 'Update Selenium Manager to latest release'
167
167
task :update_manager do |_task , _arguments |
168
168
puts 'Updating Selenium Manager references'
169
- Bazel . execute ( 'run' , args , '//scripts:selenium_manager' )
169
+ Bazel . execute ( 'run' , [ ] , '//scripts:selenium_manager' )
170
170
171
171
@git . add ( 'common/selenium_manager.bzl' )
172
172
end
@@ -1181,6 +1181,7 @@ namespace :all do
1181
1181
Rake ::Task [ 'py:lint' ] . invoke
1182
1182
end
1183
1183
1184
+ # Example: `./go all:prepare 4.31.0 early-stable`
1184
1185
desc 'Update everything in preparation for a release'
1185
1186
task :prepare , [ :version , :channel ] do |_task , arguments |
1186
1187
version = arguments [ :version ]
@@ -1206,7 +1207,7 @@ namespace :all do
1206
1207
Rake ::Task [ 'rust:version' ] . invoke ( version )
1207
1208
1208
1209
unless version == 'nightly'
1209
- Rake ::Task [ 'all:changelogs' ]
1210
+ Rake ::Task [ 'all:changelogs' ] . invoke
1210
1211
1211
1212
major_minor = arguments [ :version ] [ /^\d +\. \d +/ ]
1212
1213
file = '.github/ISSUE_TEMPLATE/bug-report.yml'
You can’t perform that action at this time.
0 commit comments