2023-01-25 06:20:49 -07:00
|
|
|
name: Documentation
|
2021-07-12 18:32:37 -07:00
|
|
|
|
|
|
|
on:
|
2023-01-25 06:20:49 -07:00
|
|
|
# trigger deployment on push to master branch when changes to docs/**
|
2021-07-22 22:26:21 -07:00
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- "docs/**"
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
# trigger deployment manually
|
|
|
|
workflow_dispatch:
|
2021-07-12 18:32:37 -07:00
|
|
|
|
|
|
|
jobs:
|
2023-01-25 06:20:49 -07:00
|
|
|
deploy:
|
2021-07-12 18:32:37 -07:00
|
|
|
runs-on: ubuntu-latest
|
2021-07-22 22:26:21 -07:00
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
working-directory: docs/
|
2021-07-12 18:32:37 -07:00
|
|
|
|
2021-07-22 22:26:21 -07:00
|
|
|
steps:
|
2023-09-10 07:26:05 -07:00
|
|
|
- uses: actions/checkout@v4
|
2021-07-12 18:32:37 -07:00
|
|
|
with:
|
2021-07-22 22:26:21 -07:00
|
|
|
# fetch all commits to get last updated time or other git log info
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Setup Node.js
|
2022-06-24 02:30:49 -07:00
|
|
|
uses: actions/setup-node@v3
|
2021-07-22 22:26:21 -07:00
|
|
|
with:
|
2023-06-17 23:24:47 -07:00
|
|
|
node-version: "20"
|
2021-07-22 22:26:21 -07:00
|
|
|
|
|
|
|
- name: Cache dependencies
|
2022-06-24 02:31:44 -07:00
|
|
|
uses: actions/cache@v3
|
2021-07-22 22:26:21 -07:00
|
|
|
id: npm-cache
|
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
**/node_modules
|
|
|
|
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
|
|
|
|
restore-keys: |
|
|
|
|
${{ runner.os }}-npm-
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
if: steps.npm-cache.outputs.cache-hit != 'true'
|
|
|
|
run: npm install
|
2021-07-12 18:32:37 -07:00
|
|
|
|
2023-06-17 23:24:47 -07:00
|
|
|
- name: Build VitePress site
|
2021-07-22 22:26:21 -07:00
|
|
|
run: npm run build
|
2023-01-25 06:20:49 -07:00
|
|
|
|
2021-07-22 22:26:21 -07:00
|
|
|
- name: Bundle CNAME with site dist
|
2023-06-17 23:24:47 -07:00
|
|
|
run: cp CNAME .vitepress/dist
|
2021-07-12 18:32:37 -07:00
|
|
|
|
2021-07-22 22:26:21 -07:00
|
|
|
- name: Deploy to GitHub Pages
|
2023-09-11 07:08:07 -07:00
|
|
|
uses: crazy-max/ghaction-github-pages@v4
|
2021-07-12 18:32:37 -07:00
|
|
|
with:
|
2021-07-22 22:26:21 -07:00
|
|
|
# deploy to gh-pages branch
|
|
|
|
target_branch: gh-pages
|
2023-06-17 23:24:47 -07:00
|
|
|
# deploy the default output dir of VitePress
|
|
|
|
build_dir: docs/.vitepress/dist
|
2021-07-22 22:26:21 -07:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|