Skip to content

加入备案信息

加入备案信息 #14

name: Deploy to GitHub Pages
on:
workflow_dispatch:
push:
branches: [main]
jobs:
Deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "16"
- name: Resolve Dependencies
run: |
npm install -g yarn
yarn
- name: Build
run: |
yarn b
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: .vitepress/dist