Skip to content

fix(kernel): explicit template instantiation for double precision (#51) #22

fix(kernel): explicit template instantiation for double precision (#51)

fix(kernel): explicit template instantiation for double precision (#51) #22

Workflow file for this run

name: Deploy docs
on:
push:
branches: [main, master]
paths:
- 'docs/**'
- 'package.json'
- 'package-lock.json'
- '.github/workflows/deploy.yml'
workflow_dispatch:
permissions:
contents: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Install WebP encoder
run: sudo apt-get update && sudo apt-get install -y webp
- name: Convert images to WebP
run: node scripts/convert-images-to-webp.mjs
- name: Build VitePress site
run: npm run docs:build
- name: Deploy to gh-pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/.vitepress/dist
publish_branch: gh-pages
force_orphan: true