Skip to content

Merge pull request #1350 from gnmyt/migrations/deno #19

Merge pull request #1350 from gnmyt/migrations/deno

Merge pull request #1350 from gnmyt/migrations/deno #19

Workflow file for this run

name: Deploy documentation to GitHub
on:
push:
branches: [ "development" ]
paths: [ "docs/**" ]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Build documentation
run: npx vitepress build docs
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/.vitepress/dist