feat: add docs workflow file #12
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: Docs | |
on: | |
pull_request: | |
jobs: | |
build-docs: | |
permissions: | |
contents: read | |
id-token: write | |
name: Build Docs | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: | |
- "3.11" | |
env: | |
POETRY_VERSION: "1.8.3" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cache Poetry | |
uses: actions/cache@v2 | |
with: | |
path: ~/.poetry | |
key: ${{ runner.os }}-poetry-${{ hashFiles('**/poetry.lock') }} | |
restore-keys: | | |
${{ runner.os }}-poetry- | |
- name: Install poetry | |
run: | | |
pipx install poetry==$POETRY_VERSION | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: poetry | |
- name: Install dependencies | |
run: | | |
poetry install | |
pip install -r docs/source/requirements.txt | |
- name: Build docs | |
run: | | |
sphinx-build -M html docs/source docs/build | |
- name: Authenticate to Google Cloud | |
id: auth | |
uses: google-github-actions/auth@v2 | |
with: | |
project_id: ${{ vars.GCP_PROJECT_ID }} | |
workload_identity_provider: ${{ vars.GCP_WORKLOAD_IDENTITY_PROVIDER }} | |
service_account: ${{ vars.GCP_SERVICE_ACCOUNT }} | |
- name: Upload Docs | |
id: upload-file | |
uses: google-github-actions/upload-cloud-storage@v2 | |
with: | |
path: docs/build/html/** | |
destination: docs-bucket-production/semantic-router |