Skip to content

Update actions/checkout digest to 11bd719 #205

Update actions/checkout digest to 11bd719

Update actions/checkout digest to 11bd719 #205

Workflow file for this run

name: Publish Documentation
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: '21'
- name: Build Docusaurus website
run: |
npm install
npm run build
- name: Deploy to GitHub Pages
if: success()
uses: crazy-max/ghaction-github-pages@v4
with:
target_branch: gh-pages
build_dir: build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}