Skip to content

Commit

Permalink
Use documentation folder for building project and uploading data
Browse files Browse the repository at this point in the history
  • Loading branch information
sabaimran committed Jan 7, 2024
1 parent 2be7c84 commit 740453f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/github_pages_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ jobs:
cache: yarn
cache-dependency-path: documentation/yarn.lock
- name: Install dependencies
run: yarn install --frozen-lockfile --non-interactive
run: |
cd documentation
yarn install --frozen-lockfile --non-interactive
- name: Build
run: |
cd documentation
Expand All @@ -33,7 +35,7 @@ jobs:
uses: actions/upload-pages-artifact@v2
with:
# 👇 Specify build output path
path: build
path: documentation/build
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2

0 comments on commit 740453f

Please sign in to comment.