Skip to content

fix: update package.json to include dist and LICENSE in files, and up… #11

fix: update package.json to include dist and LICENSE in files, and up…

fix: update package.json to include dist and LICENSE in files, and up… #11

Workflow file for this run

name: Deploy Documentation Site
on:
push:
branches: ["main"]
workflow_dispatch:
jobs:
build:
name: Build and Deploy
permissions:
contents: read
pages: write
id-token: write
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Setup Pages
uses: actions/configure-pages@v5
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- run: bun i
- run: bun run docs
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: docs
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4