Skip to content

refactor(tree-wide)!: integrate standard library (#1846) #3

refactor(tree-wide)!: integrate standard library (#1846)

refactor(tree-wide)!: integrate standard library (#1846) #3

Workflow file for this run

name: Deploy Docs to GH Pages
on:
push:
branches: [main]
paths:
- "docs/**"
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Build & Upload Site
uses: withastro/action@v4
with:
path: ./docs
package-manager: pnpm@10.14.0
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4