File tree Expand file tree Collapse file tree 3 files changed +14
-8
lines changed Expand file tree Collapse file tree 3 files changed +14
-8
lines changed Original file line number Diff line number Diff line change 1919 - dotnet
2020 - node
2121 - all
22+ force :
23+ description : Force generation even if version is nightly, type "force" to enable
24+ required : false
25+ type : string
26+ default : " "
2227
2328 workflow_call :
2429 inputs :
7479 npm install
7580 npm install --prefix javascript/selenium-webdriver
7681 - name : Generate Documentation for selected langauges
77- run : ./go ${{ inputs.language }}:docs
82+ run : ./go ${{ inputs.language }}:docs ${{ inputs.force }}
7883 - name : Documentation Pull Request
7984 id : cpr
8085 uses : peter-evans/create-pull-request@v6
Original file line number Diff line number Diff line change @@ -1118,12 +1118,13 @@ namespace :all do
11181118 end
11191119
11201120 desc 'Update all API Documentation'
1121- task :docs do
1122- Rake ::Task [ 'java:docs' ] . invoke ( 'skip_update' )
1123- Rake ::Task [ 'py:docs' ] . invoke ( 'skip_update' )
1124- Rake ::Task [ 'rb:docs' ] . invoke ( 'skip_update' )
1125- Rake ::Task [ 'dotnet:docs' ] . invoke ( 'skip_update' )
1126- Rake ::Task [ 'node:docs' ] . invoke ( 'skip_update' )
1121+ task :docs do |_task , arguments |
1122+ args = arguments . to_a
1123+ Rake ::Task [ 'java:docs' ] . invoke ( *( args + [ 'skip_update' ] ) )
1124+ Rake ::Task [ 'py:docs' ] . invoke ( *( args + [ 'skip_update' ] ) )
1125+ Rake ::Task [ 'rb:docs' ] . invoke ( *( args + [ 'skip_update' ] ) )
1126+ Rake ::Task [ 'dotnet:docs' ] . invoke ( *( args + [ 'skip_update' ] ) )
1127+ Rake ::Task [ 'node:docs' ] . invoke ( *( args + [ 'skip_update' ] ) )
11271128
11281129 update_gh_pages
11291130 end
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ def selenium_manager():
2020 http_file (
2121 name = "download_sm_windows" ,
2222 executable = True ,
23- sha256 = "eb6e3b19bb70c3fee7fdb332153d7c7c523034044059900e80b663b8817e720c " ,
23+ sha256 = "89dd1d25e321a07cc88fd76fb6143008298092faecb1573835e0f86483d0abfa " ,
2424 url = "https://github.com/SeleniumHQ/selenium_manager_artifacts/releases/download/selenium-manager-acecd4f/selenium-manager-windows.exe" ,
2525 )
2626
You can’t perform that action at this time.
0 commit comments