Skip to content
This repository was archived by the owner on Apr 24, 2026. It is now read-only.

Commit 1f4a480

Browse files
committed
Fix GitHub Pages deployment path
Fixed path in upload-pages-artifact action. The working-directory setting only applies to run steps, not to actions, so the upload path needs to be relative to the repository root.
1 parent 9a29de6 commit 1f4a480

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/hugo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- name: Upload artifact
5353
uses: actions/upload-pages-artifact@v3
5454
with:
55-
path: ./docs/public
55+
path: docs/public
5656

5757
deploy:
5858
environment:

0 commit comments

Comments
 (0)