Skip to content

Commit

Permalink
ci: setup docs workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
prazdevs committed Sep 4, 2024
1 parent 5dfd596 commit 77b432d
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: docs

on:
push:
branches:
- main
workflow_dispatch:

permissions:
contents: read
pages: write
id-token: write

jobs:
docs:
runs-on: ubuntu-latest

environment:
name: Docs (GH Pages)
url: ${{ steps.deployment.outputs.page_url }}

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v4

- name: Setup node
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: pnpm

- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Build package
run: pnpm build

- name: Build docs
run: pnpm docs:build

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: docs/.vitepress/dist

- name: Deploy docs
uses: actions/deploy-pages@v4
id: deployment

0 comments on commit 77b432d

Please sign in to comment.