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 9a95656 commit cff0d89Copy full SHA for cff0d89
.github/workflows/build-deploy-docs.yml
@@ -60,7 +60,7 @@ jobs:
60
- name: Prepare publish folder (gh-pages/docs)
61
run: |
62
New-Item -ItemType Directory -Force -Path public/docs | Out-Null
63
- robocopy "docs/_site" "public/docs" /E /NFL /NDL /NJH /NJS /NC /NS | Out-Null
+ Copy-Item -Path "docs/_site/*" -Destination "public/docs" -Recurse -Force
64
if (Test-Path "docs/.nojekyll") { Copy-Item -Force "docs/.nojekyll" "public/docs/.nojekyll" }
65
shell: pwsh
66
0 commit comments