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 bba29c4 commit 78a47bcCopy full SHA for 78a47bc
.github/workflows/release.yml
@@ -9,23 +9,18 @@ jobs:
9
deploy_docs:
10
runs-on: ubuntu-latest
11
steps:
12
- - uses: actions/checkout@v3
13
-
14
- - name: Install pnpm
+ - uses: actions/checkout@v4
+ - name: Setup pnpm
15
uses: pnpm/action-setup@v2
16
- with:
17
- version: 7
18
- run_install: true
19
20
- name: Setup Node.js
21
uses: actions/setup-node@v3
22
with:
23
node-version: 18
24
cache: pnpm
25
26
- - name: Build docs
27
- run: |-
28
- pnpm docs:build -d docs_dist
+ - name: Install deps
+ run: pnpm install
+ - name: Build
+ run: pnpm docs:build -d docs_dist
29
30
- name: Setup git
31
run: |
0 commit comments