[Gecko Bug 1761634] Backed out changeset e721121e5f57 (bug 1761634) for causing several issues with WebDriver clients. a=backout #13264
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: documentation | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- 'docs/**' | |
- 'resources/**' | |
- 'tools/**' | |
pull_request: | |
paths: | |
- 'docs/**' | |
- 'resources/**' | |
- 'tools/**' | |
jobs: | |
build-and-publish: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '14' | |
- name: Set up Virtualenv | |
run: pip install virtualenv | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 50 | |
- name: Run website_build.sh | |
# Use a conditional step instead of a conditional job to work around #20700. | |
if: github.repository == 'web-platform-tests/wpt' | |
run: ./tools/ci/website_build.sh | |
env: | |
DEPLOY_TOKEN: ${{ secrets.DEPLOY_TOKEN }} |