Skip to content

Commit

Permalink
chore(docs): fix deploy website ci
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonkuhrt committed Aug 16, 2024
1 parent a0a9471 commit c3d1562
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/deploy-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,16 @@ jobs:
cache: pnpm
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Install Dependencies
- name: Install Library Dependencies
run: pnpm install
- name: Build Library
run: pnpm build
- name: Install Website Dependencies
working-directory: website
run: pnpm install
- name: Build
- name: Build Website
working-directory: website
run: pnpm build # or pnpm docs:build / yarn docs:build / bun run docs:build
run: pnpm build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
Expand Down

0 comments on commit c3d1562

Please sign in to comment.