We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9be7ab6 commit dcd80baCopy full SHA for dcd80ba
.github/workflows/build.yml
@@ -21,12 +21,12 @@ jobs:
21
with:
22
repository: th3cyb3rhub/TheCyberHUB
23
ref: gh-pages
24
- path: gh-pages # Check out into a subdirectory
+ path: ./ # Check out into a subdirectory
25
26
- name: Copy content from gh-pages to current directory
27
run: |
28
if (Test-Path "gh-pages") {
29
- Copy-Item -Recurse -Force "gh-pages/*" "."
+ Copy-Item -Recurse -Force "./*" "."
30
} else {
31
Write-Host "gh-pages directory does not exist."
32
}
0 commit comments