Skip to content

✨ 修改favicon

✨ 修改favicon #11

Workflow file for this run

name: Deploy VitePress site to Pages
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: write
concurrency:
group: pages
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: 安装 pnpm
uses: pnpm/action-setup@v2
with:
run_install: true
version: 8
- name: Setup Node.js
run: |-
pnpm install
- name: Build with VitePress
env:
NODE_OPTIONS: --max_old_space_size=8192
run: |-
pnpm run build
> .vitepress/dist/.nojekyll
- name: Deploy to Vercel
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: pages
folder: .vitepress/dist
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: pages
folder: .vitepress/dist