Skip to content

Merge pull request #2 from setaman/update-vuepress2 #63

Merge pull request #2 from setaman/update-vuepress2

Merge pull request #2 from setaman/update-vuepress2 #63

Workflow file for this run

name: docs
on:
# trigger deployment on every push to main branch
push:
branches: [main]
pull_request:
branches:
- main
# trigger deployment manually
workflow_dispatch:
jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: 16.15
- name: Install dependencies
run: npm ci
- name: Build VuePress site
run: yarn docs:build
# please check out the docs of the workflow for more details
# @see https://github.com/crazy-max/ghaction-github-pages
- name: Deploy to GitHub Pages
uses: crazy-max/ghaction-github-pages@v2
with:
# 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 }}