We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a3010d6 + a7a630f commit a561ebcCopy full SHA for a561ebc
1 file changed
.github/workflows/deploy.yml
@@ -12,23 +12,21 @@ jobs:
12
name: Build Docusaurus
13
runs-on: ubuntu-latest
14
steps:
15
- - uses: actions/checkout@v4
16
- with:
17
- fetch-depth: 0
+ - uses: actions/checkout@v6
18
19
- - uses: actions/setup-node@v4
+ - uses: actions/setup-node@v6
20
with:
21
node-version: 20
22
- cache: npm
+ cache: yarn
23
24
- name: Install dependencies
25
- run: npm ci
+ run: yarn install
26
27
- name: Build website
28
- run: npm run build
+ run: yarn run build
29
30
- name: Upload Build Artifact
31
- uses: actions/upload-pages-artifact@v3
+ uses: actions/upload-pages-artifact@v4
32
33
path: ./build
34
0 commit comments