fix: 修复搜索功能路由跳转失败的问题 #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 将静态内容部署到 GitHub Pages 的工作流程 | |
name: deploy | |
on: | |
# 仅在推送到默认分支时运行 | |
push: | |
branches: ['main'] | |
# 设置 GITHUB_TOKEN 的权限,以允许部署到 GitHub Pages。 | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
# 允许一个并发的部署 | |
concurrency: | |
group: 'pages' | |
cancel-in-progress: true | |
jobs: | |
# 单次部署的工作描述 | |
push-to-gh-pages: | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Set up Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
run_install: false | |
- name: Build | |
env: | |
NODE_OPTIONS: '--max_old_space_size=4096' | |
run: | | |
pnpm install | |
pnpm run build | |
- name: Setup Pages | |
uses: actions/configure-pages@v3 | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v2 | |
with: | |
# Upload dist repository | |
path: './dist' | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v2 |