Skip to content

Deploy to GitHub Pages #3

Deploy to GitHub Pages

Deploy to GitHub Pages #3

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
tags:
- "v.*"
branches:
- release
workflow_dispatch:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16
- uses: pnpm/action-setup@v2
with:
version: 7.27
run_install: |
- recursive: true
- name: Build project
run: pnpm run build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./.vitepress/dist