asdf/.github/workflows/docs.yml

60 lines
1.4 KiB
YAML
Raw Permalink Normal View History

name: Docs
on:
2021-07-22 22:26:21 -07:00
# trigger deployment on every push to main branch
push:
paths:
- "docs/**"
branches:
- master
# trigger deployment manually
workflow_dispatch:
jobs:
2021-07-22 22:26:21 -07:00
docs:
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@v2
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@v1
with:
node-version: "16"
- name: Cache dependencies
uses: actions/cache@v2
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-22 22:26:21 -07:00
- name: Build VuePress site
run: npm run build
- name: Bundle CNAME with site dist
2021-07-22 22:32:08 -07:00
run: cp CNAME .vuepress/dist
2021-07-22 22:26:21 -07:00
- name: Deploy to GitHub Pages
uses: crazy-max/ghaction-github-pages@v2
with:
2021-07-22 22:26:21 -07:00
# deploy to gh-pages branch
target_branch: gh-pages
# deploy the default output dir of VuePress
build_dir: docs/.vuepress/dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}