Skip to content
This repository was archived by the owner on Aug 30, 2025. It is now read-only.

docs: remove the vendored deno types in favor of the @types/deno pack… #77

docs: remove the vendored deno types in favor of the @types/deno pack…

docs: remove the vendored deno types in favor of the @types/deno pack… #77

Workflow file for this run

name: API Docs
on:
push:
branches:
- main
jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- run: pnpm i
- run: pnpm build-api-docs
- name: Upload static files as artifact
id: deployment
uses: actions/upload-pages-artifact@v3
with:
path: packages/api-docs/dist
# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
permissions:
pages: write
id-token: write
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4