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.
2 parents cb8014c + 69ad6c9 commit 4cc889cCopy full SHA for 4cc889c
.github/workflows/generate-docs.yml
@@ -23,9 +23,16 @@ jobs:
23
wget https://github.com/dotnet/docfx/releases/download/v2.58/docfx.zip
24
unzip docfx.zip -d docfx
25
26
+ - name: Locate DocFX Path
27
+ id: locate_docfx
28
+ run: |
29
+ DOCFX_PATH=$(find $GITHUB_WORKSPACE -name "docfx" -type f -executable | head -n 1)
30
+ echo "DOCFX_PATH=$DOCFX_PATH" >> $GITHUB_ENV
31
+
32
- name: Generate Documentation
33
run: |
- docfx/docfx/docfx docfx_project/docfx.json
34
+ $DOCFX_PATH docfx_project/docfx.json
35
36
37
- name: Publish to GitHub Wiki
38
uses: peaceiris/actions-gh-pages@v3
0 commit comments