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 2145246 commit 6d39d70Copy full SHA for 6d39d70
1 file changed
.github/workflows/DeployPages.yml
@@ -37,9 +37,15 @@ jobs:
37
repository: PSModule/.github
38
path: src
39
40
+ - name: Debuf - Filesystem
41
+ shell: pwsh
42
+ run: |
43
+ Write-Verbose (Get-ChildItem -Recurse -File | Select-Object -ExpandProperty FullName | Sort-Object) -Verbose
44
+
45
- name: Copy GitHub profile folder to docs
46
shell: pwsh
47
run: |
48
+ Write-Verbose (Get-ChildItem -Path 'docs' -Recurse -File | Select-Object -ExpandProperty FullName | Sort-Object) -Verbose
49
Copy-Item -Path src/profile/* -Destination docs -Recurse -Force
50
Write-Verbose (Get-ChildItem -Path 'docs' -Recurse -File | Select-Object -ExpandProperty FullName | Sort-Object) -Verbose
51
0 commit comments