Skip to content

docs: update compatibility and installation documentation for v1.x ve… #14

docs: update compatibility and installation documentation for v1.x ve…

docs: update compatibility and installation documentation for v1.x ve… #14

Workflow file for this run

name: Deploy Docs
on:
push:
branches: [main]
paths:
- "docs/**"
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
working-directory: docs
run: bun install --frozen-lockfile
- name: Build docs
working-directory: docs
run: bun run build
- uses: actions/upload-pages-artifact@v3
with:
path: docs/build
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- id: deployment
uses: actions/deploy-pages@v4