Skip to content

Commit

Permalink
Push right website
Browse files Browse the repository at this point in the history
  • Loading branch information
davesnx committed Nov 3, 2023
1 parent 62a874f commit 3b1b256
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ jobs:
with:
node-version: '20'

- name: Install dependencies
run: npm install
- name: Install website dependencies
run: cd website; npm install

- name: Build
run: npm run build
- name: Build website
run: cd website; npm run build

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

0 comments on commit 3b1b256

Please sign in to comment.