We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 359075a commit 87176efCopy full SHA for 87176ef
.github/workflows/build.yml
@@ -24,8 +24,12 @@ 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
28
+ if (Test-Path ".github") {
29
+ Remove-Item -Recurse -Force ".github"
30
+ }
31
# Copy necessary files into your source directory
- cp -R temp/* . # Adjust this if needed
32
+ Copy-Item -Recurse temp/* .
33
34
- name: Clear Electron Builder Cache
35
0 commit comments