Skip to content

Commit

Permalink
Fix website directory
Browse files Browse the repository at this point in the history
  • Loading branch information
natenho committed Jun 9, 2023
1 parent a3c1b89 commit 0a0dd93
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/website-deploy-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ jobs:
cache: yarn

- name: Install dependencies
run: yarn install --frozen-lockfile
run: |
cd website
yarn install --frozen-lockfile
- name: Test build website
run: yarn build
run: |
cd website
yarn build
8 changes: 6 additions & 2 deletions .github/workflows/website-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,13 @@ jobs:
cache: yarn

- name: Install dependencies
run: yarn install --frozen-lockfile
run: |
cd website
yarn install --frozen-lockfile
- name: Build website
run: yarn build
run: |
cd website
yarn build
# Popular action to deploy to GitHub Pages:
# Docs: https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-docusaurus
Expand Down

0 comments on commit 0a0dd93

Please sign in to comment.