We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
sharp
1 parent 0be55b9 commit 4caf3e7Copy full SHA for 4caf3e7
1 file changed
.github/workflows/deploy.yml
@@ -16,6 +16,23 @@ jobs:
16
steps:
17
- name: Checkout your repository using git
18
uses: actions/checkout@v4
19
+
20
+ - name: Setup pnpm
21
+ uses: pnpm/action-setup@v2
22
+ with:
23
+ version: 10.14.0
24
25
+ - name: Setup Node
26
+ uses: actions/setup-node@v4
27
28
+ node-version: 20
29
+ cache: 'pnpm'
30
31
+ - name: Install dependencies
32
+ run: pnpm install --no-frozen-lockfile
33
+ env:
34
+ SHARP_IGNORE_GLOBAL_LIBVIPS: 1
35
36
- name: Install, build, and upload your site
37
uses: withastro/action@v3
38
# with:
0 commit comments