We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1650b5c commit 43cc99eCopy full SHA for 43cc99e
2 files changed
.github/workflows/deploy-site.yaml
@@ -29,10 +29,10 @@ jobs:
29
30
# DO NOT USE pnpm here, it will cause issues with Docker build
31
- name: Install Dependencies
32
- run: npm install
+ run: npm install -g pnpm && pnpm install
33
34
- name: Build
35
- run: npm run build
+ run: pnpm build
36
37
# Setup gcloud CLI
38
- name: Authenticate with Google Cloud
.github/workflows/docker-publish.yaml
@@ -22,10 +22,7 @@ jobs:
22
node-version: 22
23
24
- name: Install pnpm
25
- run: npm install -g pnpm
26
-
27
- - name: Install pnpm
28
- run: pnpm install
run: pnpm build
0 commit comments