Skip to content

feat: ceramic-one docs #2

feat: ceramic-one docs

feat: ceramic-one docs #2

name: Build and deploy docs
on:
pull_request:
branches:
- main
push:
branches:
- main
workflow_dispatch: # manually triggered
jobs:
build:
name: Build docs website
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
run_install: |
- args: [--frozen-lockfile]
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'
- name: Build docs website
run: pnpm build
- name: Deploy to GitHub Pages
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build
user_name: github-actions[bot]
user_email: 41898282+github-actions[bot]@users.noreply.github.com