Commit c46b04d5481751d3f85e2590233fa501cb16a734
Committed by
GitHub
1 parent
afacf688
workflow: fix github action build error (#2752)
Showing
1 changed file
with
2 additions
and
2 deletions
.github/workflows/deploy.yml
@@ -100,8 +100,8 @@ jobs: | @@ -100,8 +100,8 @@ jobs: | ||
100 | env: | 100 | env: |
101 | NODE_OPTIONS: '--max_old_space_size=4096' | 101 | NODE_OPTIONS: '--max_old_space_size=4096' |
102 | run: | | 102 | run: | |
103 | - yarn install | ||
104 | - yarn run build | 103 | + pnpm install |
104 | + pnpm build | ||
105 | touch dist/.nojekyll | 105 | touch dist/.nojekyll |
106 | cp dist/index.html dist/404.html | 106 | cp dist/index.html dist/404.html |
107 | 107 |