Skip to content

docs: fix typos and grammar in contributor and simulation docs (#687) #303

docs: fix typos and grammar in contributor and simulation docs (#687)

docs: fix typos and grammar in contributor and simulation docs (#687) #303

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
workflow_dispatch:
env:
GITHUB_REPOSITORY: ${{ github.repository }}
jobs:
deploy-gh-pages:
permissions:
pages: write
id-token: write
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: '22'
- run: npm ci
- run: npm run build:spec
- run: npm run build:docs
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: build/docs/gatsby/public
commit_message: "Deploy to GitHub Pages"