Skip to content

Commit ed58a8a

Browse files
authored
Merge branch 'SeleniumHQ:trunk' into py-selenium-manager-arm-support
2 parents e06d900 + 31e927e commit ed58a8a

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

.github/workflows/update-documentation.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ on:
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:
@@ -74,7 +79,7 @@ jobs:
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

Rakefile

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff 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

common/selenium_manager.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)