Commit 34237ef033942032978fe38bbb16ae6fa2a41321

Authored by GauharChan
Committed by GitHub
1 parent b13c4a81

workflow: fix github action build error (#2773)

* workflow: fix github action build error

* workflow: pnpm/action-setup 不指定具体版本号
Showing 1 changed file with 3 additions and 0 deletions
.github/workflows/deploy.yml
... ... @@ -67,6 +67,9 @@ jobs:
67 67 sed -i "s#VITE_DROP_CONSOLE\s*=.*#VITE_DROP_CONSOLE = true#g" ./.env.production
68 68 cat ./.env.production
69 69  
  70 + - name: Install pnpm
  71 + uses: pnpm/action-setup@v2
  72 +
70 73 - name: use Node.js 16
71 74 uses: actions/setup-node@v3
72 75 with:
... ...