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 d63fba3 commit d65efa0Copy full SHA for d65efa0
.github/workflows/deploy.yml
@@ -20,14 +20,14 @@ jobs:
20
- name: Setup Pages
21
uses: actions/configure-pages@v3
22
23
+ - name: Debug Artifact Contents
24
+ run: ls -R ./src # Print folder contents to check if files exist
25
+
26
- name: Upload src folder to GitHub Pages
27
uses: actions/upload-pages-artifact@v3
28
with:
- path: ./src
- name: github-pages # Ensure the artifact name matches below
29
+ path: ./src # Upload all contents of src
30
31
- name: Deploy to GitHub Pages
32
id: deployment
33
uses: actions/deploy-pages@v2
- with:
- artifact_name: github-pages
0 commit comments