Skip to content

Publish Docs

Publish Docs #25

Workflow file for this run

name: Publish Docs
on:
workflow_dispatch:
push:
tags:
- '*'
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
registry-url: 'https://registry.npmjs.org'
node-version: '22.x'
cache: pnpm
- name: Publish
env:
DOCS_DEPLOY_KEY: ${{ secrets.DOCS_DEPLOY_KEY }}
SUPABASE_KEY: ${{ secrets.SUPABASE_KEY }}
run: |
node scripts/run publish-docs ${{ github.event.ref }}