We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 767b1ba commit 716e134Copy full SHA for 716e134
.github/workflows/deploy.yml
@@ -22,21 +22,17 @@ jobs:
22
uses: actions/checkout@v4
23
with:
24
fetch-depth: 0
25
- uses: pnpm/action-setup@v2
26
- with:
27
- version: 6.32.9
28
- name: Setup Node.js
29
uses: actions/setup-node@v4
30
31
node-version: '20'
32
- cache: 'pnpm'
33
- name: Cache dependencies
34
uses: actions/cache@v4
35
- name: Install dependencies
36
- run: pnpm install
+ run: npm install
37
38
- name: Run Build Script
39
- run: pnpm run build
+ run: npm run build
40
41
- name: Deploy to GitHub Pages
42
# 此actions的官方文档 https://github.com/JamesIves/github-pages-deploy-action
0 commit comments