summaryrefslogtreecommitdiffstats
path: root/.github/workflows/main-doc.yml
blob: 0d46fa908a94d430a05733406a8c7699b56b9422 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
---
# This is deploying the latest commits on main to main documentation
name: Mkdocs
on:
  push:
    branches:
      - main
    paths:
      # Run only if any of the following paths are changed when pushing to main
      # May need to update this
      - "docs/**"
      - "mkdocs.yml"
  workflow_dispatch:

jobs:
  'build_latest_doc':
    name: 'Update Public main documentation'
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
        with:
          fetch-depth: 0

      - name: 'Setup Python 3 on runner'
        uses: actions/setup-python@v5
        with:
          python-version: '3.x'

      - name: Setup Git config
        run: |
          git config --global user.name 'github-actions[bot]'
          git config --global user.email 'github-actions[bot]@users.noreply.github.com'

      - name: 'Build mkdocs content and deploy to gh-pages to main'
        run: |
            pip install .[doc]
            mike deploy --push main