Skip to content

Commit 3b1b256

Browse files
committed
Push right website
1 parent 62a874f commit 3b1b256

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ jobs:
1818
with:
1919
node-version: '20'
2020

21-
- name: Install dependencies
22-
run: npm install
21+
- name: Install website dependencies
22+
run: cd website; npm install
2323

24-
- name: Build
25-
run: npm run build
24+
- name: Build website
25+
run: cd website; npm run build
2626

2727
- name: Deploy to GitHub Pages
2828
uses: peaceiris/actions-gh-pages@v3
2929
with:
3030
github_token: ${{ secrets.GITHUB_TOKEN }}
31-
publish_dir: ./build # Adjust to your build directory
31+
publish_dir: ./website/build # Adjust to your build directory

0 commit comments

Comments
 (0)