Skip to content

Merge pull request #7 from sunquakes/development #5

Merge pull request #7 from sunquakes/development

Merge pull request #7 from sunquakes/development #5

Workflow file for this run

name: Docs Publish
on:
push:
branches: [main]
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install Vuepress and Build Docs
run: |
cd docs
yarn install
yarn docs:build
- name: Deploy to GitHub Pages
uses: crazy-max/ghaction-github-pages@v2
with:
target_branch: gh-pages
build_dir: docs/docs/.vuepress/dist
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}