Skip to content

Commit 1ae91f2

Browse files
committed
fix: deploy.yml upload docs-site/build instead of lib
1 parent dfabef0 commit 1ae91f2

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ jobs:
2727
cache: 'npm'
2828

2929
- name: Install dependencies
30-
run: npm ci
30+
run: cd docs-site && npm ci
3131

3232
- name: Build
33-
run: npm run build
33+
run: cd docs-site && npm run build
3434

3535
- name: Upload artifact
3636
uses: actions/upload-pages-artifact@v3
3737
with:
38-
path: lib
38+
path: docs-site/build
3939

4040
deploy:
4141
environment:

0 commit comments

Comments
 (0)