File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change 46
46
with :
47
47
fetch-depth : 0
48
48
49
+ - name : Install-PSModuleHelpers
50
+ uses : PSModule/Install-PSModuleHelpers@v1
51
+
49
52
- name : Download docs artifact
50
53
uses : actions/download-artifact@v4
51
54
with :
86
89
Get-ChildItem -Recurse | Select-Object -ExpandProperty FullName | Sort-Object | Format-List
87
90
}
88
91
92
+ Get-ChildItem -Path $functionDocsFolder -Recurse -Force -Include '*.md' | ForEach-Object {
93
+ $fileName = $_.Name
94
+ LogGroup " - $fileName" {
95
+ Show-FileContent -Path $_
96
+ }
97
+ }
98
+
89
99
LogGroup 'Build docs - Process about topics' {
90
100
$aboutDocsFolderPath = Join-Path -Path $SiteOutputPath -ChildPath 'docs/About'
91
101
$aboutDocsFolder = New-Item -Path $aboutDocsFolderPath -ItemType Directory -Force
You can’t perform that action at this time.
0 commit comments