We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 822bb27 commit b798782Copy full SHA for b798782
.github/workflows/deploy.yml
@@ -22,6 +22,32 @@ jobs:
22
steps:
23
- name: Checkout your repository using git
24
uses: actions/checkout@v3
25
+
26
+ - uses: pnpm/action-setup@v3
27
+ name: Install pnpm
28
+ with:
29
+ version: 8
30
+ run_install: false
31
32
+ - name: Get pnpm store directory
33
+ shell: bash
34
+ run: |
35
+ echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
36
37
+ - uses: actions/cache@v3
38
+ name: Setup pnpm cache
39
40
+ path: ${{ env.STORE_PATH }}
41
+ key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
42
+ restore-keys: |
43
+ ${{ runner.os }}-pnpm-store-
44
45
+ - name: Install dependencies
46
+ run: pnpm install --no-frozen-lockfile
47
48
+ - name: Build packages
49
+ run: pnpm build
50
51
- name: Install, build, and upload your site
52
uses: withastro/action@v1
53
with:
0 commit comments