Skip to content

add SDK link to nav bar #3

add SDK link to nav bar

add SDK link to nav bar #3

Workflow file for this run

name: Docs latest and released versions
on:
push:
branches:
- main
jobs:
build_docs:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
name: Build and Deploy Job
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
fetch-depth: 0
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install poetry
uses: abatilo/actions-poetry@v3
with:
poetry-version: latest
- name: Install packages
run: |
poetry install
- name: Configure Git user
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
- name: Build docs
run: |
poetry run mkdocs gh-deploy --force