perf: 加载自己分享的资源无需额外请求 #63
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
name: gh-pages | |
on: | |
push: | |
branches: ['main'] | |
permissions: | |
contents: write | |
jobs: | |
gh-pages: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: volta-cli/action@v3 | |
- name: download volta node | |
uses: nick-fields/retry@v2 | |
with: | |
timeout_seconds: 60 | |
max_attempts: 3 | |
command: node -v | |
- uses: pnpm/action-setup@v2 | |
- run: pnpm -v | |
- run: pnpm install | |
- run: pnpm run build | |
- uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./dist | |
cname: gkd-kit.songe.li |