Skip to content

Commit

Permalink
misc: workflow for docs
Browse files Browse the repository at this point in the history
  • Loading branch information
behoney committed Oct 3, 2024
1 parent 535d582 commit 93765da
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Deploy Docs

on:
push:
branches:
- main
- docs/deploy

env:
PUBLISH_DIR: ./docs/dist

jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'

- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 9

- name: Install dependencies
run: pnpm install

- name: Build docs
run: pnpm build:docs

- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ${{ env.PUBLISH_DIR }}

0 comments on commit 93765da

Please sign in to comment.