Skip to content

Commit

Permalink
misc: deploy astro docs (#5)
Browse files Browse the repository at this point in the history
* misc: docs build command

* misc: workflow for docs

* refactor: rename workflow job

* chore: remove test workflow target
  • Loading branch information
behoney authored Oct 3, 2024
1 parent ee9e051 commit 4aaaf1a
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 1 deletion.
38 changes: 38 additions & 0 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Deploy Docs

on:
push:
branches:
- main

env:
PUBLISH_DIR: ./docs/dist

jobs:
build-and-deploy-docs:
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 }}
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"dev": "npx astro dev --root ./docs",
"build": "tsc -b && vite build",
"lint": "eslint .",
"test": "pnpm run dev & playwright test; kill $!"
"test": "pnpm run dev & playwright test; kill $!",
"build:docs": "npx astro build --root ./docs"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 4aaaf1a

Please sign in to comment.