File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -135,8 +135,8 @@ jobs:
135
135
Verbose : ${{ inputs.Verbose }}
136
136
Version : ${{ inputs.Version }}
137
137
Script : |
138
- New-Item -Path "$env:GITHUB_WORKSPACE /outputs/site/docs/Functions" -ItemType Directory -Force
139
- Copy-Item -Path "$env:GITHUB_WORKSPACE /outputs/docs/*" -Destination "$env:GITHUB_WORKSPACE /outputs/site/docs/Functions" -Recurse -Force
138
+ New-Item -Path "${{ inputs.Path }} /outputs/site/docs/Functions" -ItemType Directory -Force
139
+ Copy-Item -Path "${{ inputs.Path }} /outputs/docs/*" -Destination "${{ inputs.Path }} /outputs/site/docs/Functions" -Recurse -Force
140
140
$moduleName = [string]::IsNullOrEmpty('${{ inputs.Name }}') ? $env:GITHUB_REPOSITORY_NAME : '${{ inputs.Name }}'
141
141
$ModuleSourcePath = Join-Path $PWD -ChildPath '${{ inputs.Path }}'
142
142
$SiteOutputPath = Join-Path $PWD -ChildPath 'outputs/site'
@@ -191,7 +191,7 @@ jobs:
191
191
- name : Debug File system
192
192
shell : pwsh
193
193
run : |
194
- Get-ChildItem -Path $env:GITHUB_WORKSPACE -Recurse | Select-Object -ExpandProperty FullName | Sort-Object
194
+ Get-ChildItem -Path ${{ inputs.Path }} -Recurse | Select-Object -ExpandProperty FullName | Sort-Object
195
195
196
196
- name : Build mkdocs-material project
197
197
working-directory : outputs/site
You can’t perform that action at this time.
0 commit comments