We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87176ef commit 71fd409Copy full SHA for 71fd409
.github/workflows/build.yml
@@ -24,12 +24,18 @@ jobs:
24
- name: Clone the gh-pages branch
25
run: |
26
git clone --single-branch --branch gh-pages https://github.com/th3cyb3rhub/TheCyberHUB.git temp
27
- # Remove existing directories before copying
+ # List the contents of the temp directory to verify files are present
28
+ Get-ChildItem temp
29
+ # Check if the target folder exists and remove if necessary
30
if (Test-Path ".github") {
31
Remove-Item -Recurse -Force ".github"
32
}
33
# Copy necessary files into your source directory
- Copy-Item -Recurse temp/* .
34
+ Copy-Item -Recurse -Path "temp/*" -Destination "." -Force
35
+
36
+ - name: List files after copying
37
+ run: |
38
+ Get-ChildItem
39
40
- name: Clear Electron Builder Cache
41
0 commit comments