Skip to content

Merge branch 'dev' #113

Merge branch 'dev'

Merge branch 'dev' #113

Workflow file for this run

name: Deploy docs to GH Pages
on:
push:
branches:
- master
jobs:
build:
env:
CS_TOOLS_THOUGHTSPOT__URL: https://dogfood.thoughtspot.cloud
CS_TOOLS_THOUGHTSPOT__USERNAME: FakeUser
CS_TOOLS_THOUGHTSPOT__SECRET_KEY: 00000000-0000-0000-0000-000000000000
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install Python dependencies
run: pip install -e .[docs]
- name: Build and Deploy Documentation
run: mkdocs build
- name: Deploy Documentation
run: mkdocs gh-deploy --force