Skip to content

Add the CAPD example using Sveltos and GitOps (#699) #98

Add the CAPD example using Sveltos and GitOps (#699)

Add the CAPD example using Sveltos and GitOps (#699) #98

Workflow file for this run

name: CI build main documentation
on:
push:
branches:
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install Dependencies
run: |
pip install mkdocs-material==9.6.23
pip install mike==2.1.3
- name: Setup Docs Deploy
run: |
git config --global user.name "Sveltos Docu Deploy"
git config --global user.email "docu@projectsveltos.io"
- name: Build Docs Website
run: |
mike deploy --push main --update-aliases
mike set-default main --push