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 bb51e85 commit 062474aCopy full SHA for 062474a
.github/workflows/mkdocs.yml
@@ -32,14 +32,20 @@ jobs:
32
- name: Setup Pages
33
uses: actions/configure-pages@v5
34
35
- - name: Install dependencies
36
- run: pip install mkdocs-material
+ - name: Setup .NET
+ uses: actions/setup-dotnet@v4
37
+ with:
38
+ dotnet-version: 9.0.x
39
40
- name: Generate docs
41
run: dotnet run --project src/Helpers/GenerateDocs/GenerateDocs.csproj .
42
43
- name: Build with MkDocs
- run: mkdocs build -d ./_site
44
+ run: |
45
+ python -m venv myenv
46
+ source myenv/bin/activate
47
+ pip install mkdocs-material
48
+ mkdocs build -d ./_site
49
50
- name: Upload artifact
51
uses: actions/upload-pages-artifact@v3
0 commit comments