Skip to content

feat(grandpa): update (#411) #86

feat(grandpa): update (#411)

feat(grandpa): update (#411) #86

Workflow file for this run

name: Build GH Pages
on:
push:
branches:
- develop
jobs:
build-and-deploy:
concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession.
runs-on: ubuntu-latest
steps:
- name: Checkout master
uses: actions/checkout@v4
- name: Setup Python env
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs mkdocs-material
- name: Build
run: |
cd docs
mkdocs build --clean --strict --verbose
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: docs/site