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 2b06c65 commit 4b12fc7Copy full SHA for 4b12fc7
2 files changed
.github/workflows/Publish-Docs.yml
@@ -26,6 +26,13 @@ jobs:
26
path: src
27
fetch-depth: 0
28
29
+ - name: Compile docs
30
+ run: |
31
+ New-Item -Path .\docs -ItemType Directory -Force
32
+ Copy-Item -Path .\src\profile\* -Destination .\docs -Force -Recurse
33
+ Copy-Item -Path .\src\.github\*.md -Destination .\docs -Force -Recurse
34
+ Get-ChildItem .\docs | Select-Object -ExpandProperty FullName | Sort-Object
35
+
36
- uses: actions/configure-pages@v5
37
38
- name: Install mkdoks-material
mkdocs.yml
@@ -1,5 +1,4 @@
1
site_name: PSModule
2
-docs_dir: src/profile
3
theme:
4
name: material
5
language: en
0 commit comments