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 9d59946 commit 0dd1624Copy full SHA for 0dd1624
.github/workflows/mkdocs.yml
@@ -31,15 +31,16 @@ jobs:
31
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