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 0fdb37a commit 6f54a8eCopy full SHA for 6f54a8e
.github/workflows/docs.yml
@@ -36,6 +36,22 @@ jobs:
36
cmake -S . -B build -G Ninja --install-prefix=$(pwd)/build/install -D MFC_DOCUMENTATION=ON
37
ninja -C build install
38
39
+ # From here https://github.com/cicirello/generate-sitemap
40
+ - name: Generate the sitemap
41
+ id: sitemap
42
+ uses: cicirello/generate-sitemap@v1
43
+ with:
44
+ base-url-path: https://mflowcode.github.io/
45
+ path-to-root: build/install/docs
46
+ include-pdf: false
47
+ sitemap-format: txt
48
+
49
+ - name: Output stats
50
+ run: |
51
+ echo "sitemap-path = ${{ steps.sitemap.outputs.sitemap-path }}"
52
+ echo "url-count = ${{ steps.sitemap.outputs.url-count }}"
53
+ echo "excluded-count = ${{ steps.sitemap.outputs.excluded-count }}"
54
55
- name: Publish Documentation
56
run: |
57
set +e
0 commit comments