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 2fef1e4 commit a0a8f56Copy full SHA for a0a8f56
.github/workflows/deploy.yaml
@@ -43,14 +43,16 @@ jobs:
43
extended: true
44
- name: Build
45
run: hugo
46
+ # run in the exampleSite directory
47
+ working-directory: ./exampleSite
48
# Prepare GH Pages
49
- name: Setup Pages
50
uses: actions/configure-pages@v5
- # Upload built site to GH Pages
51
+ # Upload built example site to GH Pages
52
- name: Upload artifact
53
uses: actions/upload-pages-artifact@v3
54
with:
- path: "./public"
55
+ path: "./exampleSite/public"
56
- name: Deploy to GitHub Pages
57
id: deployment
58
uses: actions/deploy-pages@v4
0 commit comments