Skip to content

doc: add doc to show how to use NICE/VNICE for acceleration when usin… #49

doc: add doc to show how to use NICE/VNICE for acceleration when usin…

doc: add doc to show how to use NICE/VNICE for acceleration when usin… #49

Workflow file for this run

name: Deploy MkDocs
on:
push:
branches:
- main
pull_request:
branches: [ main ]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip3 install mkdocs mkdocs-material pymdown-extensions
- name: Prepare docs
run: |
bash .github/prepare_doc.sh
- name: Build MkDocs
run: mkdocs build
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
if: ${{ github.ref == 'refs/heads/main' }}
with:
branch: gh-pages
folder: ./site