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 f7fe393 commit b9eea1cCopy full SHA for b9eea1c
5 files changed
.github/workflows/compress.yml
@@ -16,7 +16,7 @@ jobs:
16
if: github.repository == 'doocs/technical-books'
17
steps:
18
- name: Checkout Branch
19
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
20
21
- name: Compress Images
22
id: calibre
.github/workflows/deploy.yml
@@ -13,17 +13,20 @@ jobs:
13
with:
14
fetch-depth: 0
15
+ - name: Setup pnpm
+ uses: pnpm/action-setup@v4
+
- name: Setup Node.js
uses: actions/setup-node@v4
node-version: 22
- cache: npm
23
+ cache: pnpm
24
25
- name: Install dependencies
- run: npm ci
26
+ run: pnpm install --frozen-lockfile
27
28
- name: Build with VitePress
- run: npm run docs:build
29
+ run: pnpm run docs:build
30
31
- name: Generate CNAME
32
run: echo "book.doocs.org" > docs/.vitepress/dist/CNAME
0 commit comments