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 b190c07 commit 7c23081Copy full SHA for 7c23081
.github/workflows/gh-pages.yml
@@ -6,12 +6,24 @@ on:
6
- main # default branch
7
jobs:
8
deploy:
9
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-latest
10
steps:
11
- - uses: actions/checkout@v4
12
- - uses: pnpm/action-setup@v3
+ - name: Checkout
+ uses: actions/checkout@v4
13
14
- - name: Build
+ - uses: pnpm/action-setup@v4
15
+ name: Install pnpm
16
+ with:
17
+ version: 9
18
+ run_install: false
19
+
20
+ - name: Install Node.js
21
+ uses: actions/setup-node@v4
22
23
+ node-version: 20
24
+ cache: 'pnpm'
25
26
+ - name: Install and Build
27
run: pnpm install & pnpm build
28
29
- name: Deploy
0 commit comments