We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c81562a commit c14f00cCopy full SHA for c14f00c
1 file changed
.github/workflows/deploy.yml
@@ -49,20 +49,24 @@ jobs:
49
uses: actions/setup-node@v4
50
with:
51
node-version: '20'
52
- cache: 'npm'
+
53
+ - name: Install pnpm
54
+ run: npm install -g pnpm
55
+ - name: Install dependencies
56
+ run: pnpm install
57
58
- name: Setup Pages
59
id: pages
60
uses: actions/configure-pages@v4
- - name: Install dependencies
- run: "[[ -f package-lock.json || -f npm-shrinkwrap.json ]] && npm ci || true"
61
62
- name: Build production website
63
env:
64
# For maximum backward compatibility with Hugo modules
65
HUGO_ENVIRONMENT: production
66
HUGO_ENV: production
67
TZ: America/Los_Angeles
68
run: |
- npm run build \
69
+ pnpm run build \
70
-- \
71
--baseURL "${{ steps.pages.outputs.base_url }}/"
72
- name: Upload artifact
0 commit comments