| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- name: Build and Deploy VitePress Site with Pnpm
- on:
- push:
- branches:
- - main # 你想要触发部署的分支名称
- # 你可以根据需要添加其他触发条件
- # Allows you to run this workflow manually from the Actions tab
- workflow_dispatch:
- # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
- permissions:
- contents: read
- pages: write
- id-token: write
- jobs:
- # Build job
- build:
- runs-on: ubuntu-latest # 运行环境
- steps:
- # 设置服务器时区为东八区
- - name: Set time zone
- run: sudo timedatectl set-timezone 'Asia/Shanghai'
- - uses: actions/checkout@v4
- - uses: pnpm/action-setup@v4
- with:
- version: 9
- - uses: actions/setup-node@v4
- with:
- node-version: '18'
- cache: 'pnpm'
- - name: Install dependencies
- run: pnpm i --no-frozen-lockfile
- - name: Build VitePress site with Pnpm
- run: pnpm run docs:build
- - name: Upload artifact
- uses: actions/upload-pages-artifact@v3
- with:
- path: ./docs/.vitepress/dist/
- # Deployment job
- deploy:
- environment:
- name: github-pages
- url: ${{ steps.deployment.outputs.page_url }}
- runs-on: ubuntu-latest
- needs: build
- steps:
- - name: Deploy to GitHub Pages
- id: deployment
- uses: actions/deploy-pages@v4
|