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 39d44e5 commit fc9dfc2Copy full SHA for fc9dfc2
.github/workflows/deploy.yml
@@ -3,7 +3,7 @@ name: Deploy src Folder to GitHub Pages
3
on:
4
push:
5
branches:
6
- - main # Or the branch you want to deploy from
+ - main
7
8
permissions:
9
contents: read
@@ -21,9 +21,10 @@ jobs:
21
uses: actions/configure-pages@v3
22
23
- name: Upload src folder to GitHub Pages
24
- uses: actions/upload-pages-artifact@v3 # Correct version and action
+ uses: actions/upload-pages-artifact@v3
25
with:
26
- path: ./src # Deploy only the src folder
+ path: ./src
27
+ name: github-pages # Make sure the artifact name is correct
28
29
- name: Deploy to GitHub Pages
30
id: deployment
0 commit comments