1 parent dbaa9ef commit 6387a56Copy full SHA for 6387a56
1 file changed
.github/workflows/deploy-docs.yml
@@ -11,17 +11,19 @@ jobs:
11
runs-on: ubuntu-latest
12
13
steps:
14
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
15
+ with:
16
+ fetch-depth: 0
17
- name: Set up Node.js
- uses: actions/setup-node@v2
18
+ uses: actions/setup-node@v4
19
with:
- node-version: '18'
20
+ node-version: '22.13'
21
22
- run: npm install
23
- run: npm run docs
24
25
- name: Deploy to GitHub Pages
26
uses: peaceiris/actions-gh-pages@v3
27
- github_token: ${{ secrets.GH_TOKEN }}
28
+ github_token: ${{ secrets.GITHUB_TOKEN }}
29
publish_dir: ./docs
0 commit comments