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 d34c6c4 commit 65b2281Copy full SHA for 65b2281
.github/workflows/docs.yml
@@ -15,6 +15,8 @@ jobs:
15
- uses: actions-rs/toolchain@v1
16
with:
17
toolchain: stable
18
+ - name: Install static-sitemap-cli
19
+ run: npm install static-sitemap-cli
20
- name: Install mdbook
21
uses: baptiste0928/cargo-install@v1
22
@@ -23,8 +25,13 @@ jobs:
23
25
- name: Build book
24
26
run: |
27
mdbook build
28
+ - name: Generate sitemap
29
+ run: |
30
+ cd book
31
+ npx sscli --base https://lifetime-variance.sunshowers.io
32
- name: Deploy
33
uses: JamesIves/github-pages-deploy-action@releases/v4
34
35
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
36
branch: gh-pages
37
folder: book
0 commit comments