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 3071ee5 commit 7559ea3Copy full SHA for 7559ea3
.github/workflows/mkdocs.yml
@@ -32,14 +32,15 @@ jobs:
32
- name: Setup Pages
33
uses: actions/configure-pages@v5
34
35
- - name: Install dependencies
36
- run: pip install mkdocs-material
37
-
38
- name: Generate docs
39
run: dotnet run --project src/helpers/GenerateDocs/GenerateDocs.csproj .
40
41
- name: Build with MkDocs
42
- run: mkdocs build -d ./_site
+ run: |
+ python -m venv myenv
+ source myenv/bin/activate
+ pip install mkdocs-material
43
+ mkdocs build -d ./_site
44
45
- name: Upload artifact
46
uses: actions/upload-pages-artifact@v3
0 commit comments