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 548d4a1 commit 0ecb807Copy full SHA for 0ecb807
.github/workflows/deploy.yml
@@ -16,9 +16,11 @@ jobs:
16
run: chmod +x ./tests/run_tests.sh # Ensure the script has execute permissions
17
continue-on-error: false # Skip deployment if tests fail
18
19
- # Remove Jekyll build as it's not needed
+ # Prepare files for GitHub Pages and exclude the _site directory
20
- name: Prepare files for GitHub Pages
21
- run: mkdir -p ./_site && cp -r * ./_site # Move all files to the _site directory
+ run: |
22
+ mkdir -p ./_site
23
+ rsync -av --progress ./ ./_site --exclude _site # Use rsync to exclude the _site directory
24
25
- name: Upload GitHub Pages artifact
26
uses: actions/upload-pages-artifact@v3
0 commit comments