Skip to content

Commit d4ea827

Browse files
fix: Correct working directory and publish path in Docusaurus deployment workflow
1 parent b2cc54b commit d4ea827

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/deploy.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,14 @@ jobs:
1919

2020
- name: Install deps
2121
run: npm install
22+
working-directory: ./physical-AI-textbook
2223

2324
- name: Build site
2425
run: npm run build
26+
working-directory: ./physical-AI-textbook
2527

2628
- name: Deploy
2729
uses: peaceiris/actions-gh-pages@v3
2830
with:
2931
github_token: ${{ secrets.GITHUB_TOKEN }}
30-
publish_dir: ./build
32+
publish_dir: ./physical-AI-textbook/build

0 commit comments

Comments
 (0)