Skip to content

Commit 967a27c

Browse files
stevending1stTechQuery
authored andcommitted
fix: fix the action file
1 parent 7e4bb67 commit 967a27c

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

.github/workflows/main.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,18 @@ jobs:
99
steps:
1010
- name: Checkout
1111
uses: actions/checkout@v2
12+
- uses: pnpm/action-setup@v2
13+
with:
14+
version: 7
1215
- name: Use Node.js
13-
uses: actions/setup-node@v2-beta
16+
uses: actions/setup-node@v3
1417
with:
1518
node-version: 14
16-
cache: yarn
19+
cache: pnpm
1720
- name: Install
18-
run: yarn
21+
run: pnpm i --frozen-lockfile
1922
- name: Build
20-
run: yarn export
23+
run: pnpm export
2124
- name: Deploy
2225
uses: peaceiris/actions-gh-pages@v3
2326
with:

0 commit comments

Comments
 (0)