asdf/.github/workflows/documentation.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

60 lines
1.4 KiB
YAML
Raw Permalink Normal View History

name: Documentation
on:
# 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:
jobs:
deploy:
runs-on: ubuntu-latest
2021-07-22 22:26:21 -07:00
defaults:
run:
working-directory: docs/
2021-07-22 22:26:21 -07:00
steps:
- uses: actions/checkout@v4
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
uses: actions/setup-node@v4
2021-07-22 22:26:21 -07:00
with:
node-version: "20"
2021-07-22 22:26:21 -07:00
- name: Cache dependencies
uses: actions/cache@v4
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
- name: Build VitePress site
2021-07-22 22:26:21 -07:00
run: npm run build
2021-07-22 22:26:21 -07:00
- name: Bundle CNAME with site dist
run: cp CNAME .vitepress/dist
2021-07-22 22:26:21 -07:00
- name: Deploy to GitHub Pages
uses: crazy-max/ghaction-github-pages@v4
with:
2021-07-22 22:26:21 -07:00
# deploy to gh-pages branch
target_branch: gh-pages
# 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 }}