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 7ec6dc8 commit 3e337de
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/website-deploy-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,14 @@ jobs:
runs-on: ubuntu-latest
defaults:
run:
working-directory: website
working-directory: ./website
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: yarn
working-directory: ./website

- name: Install dependencies
run: yarn install --frozen-lockfile
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/website-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,14 @@ jobs:
runs-on: ubuntu-latest
defaults:
run:
working-directory: website
working-directory: ./website
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: yarn
working-directory: ./website

- name: Install dependencies
run: yarn install --frozen-lockfile
Expand All @@ -30,6 +31,7 @@ jobs:
# Docs: https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-docusaurus
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
working-directory: ./website
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
# Build output to publish to the `gh-pages` branch:
Expand Down

0 comments on commit 3e337de

Please sign in to comment.