Bump @playwright/test from 1.53.2 to 1.54.1 (#1809) #362
This file contains hidden or 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: 📚 Deploy Documentation | |
on: | |
push: | |
branches: [main] | |
# Address actions/missing-workflow-permissions rule in | |
# code scanning alerts | |
permissions: | |
contents: write | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the code | |
uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
cache: "pip" | |
- name: Install poetry | |
uses: abatilo/actions-poetry@3765cf608f2d4a72178a9fc5b918668e542b89b1 # v4 | |
- uses: actions/cache@v4 | |
name: Define a cache for the virtual environment based on the dependencies lock file | |
with: | |
path: ./.venv | |
key: venv-dev-docs-${{ hashFiles('poetry.lock') }} | |
- name: Install the project dependencies | |
run: poetry sync --only docs --no-root | |
- name: Build the documentation | |
run: | | |
poetry run make build-docs | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./_build # Path to your built HTML files |