Merge pull request #176 from szepeviktor/typos #20
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: Build Docs | |
on: | |
push: | |
branches: [v3.0] | |
pull_request: ~ | |
jobs: | |
build-docs: | |
name: Build Docs | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run build command | |
run: docker compose run --rm read-the-docs-builder | |
- name: Check build | |
run: cat _build/html/guides.html | |
- name: save site as artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: docs | |
path: _build/html |