mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-11-23 15:38:55 +01:00
Use documentation folder for building project and uploading data
This commit is contained in:
parent
2be7c84203
commit
740453fa18
1 changed files with 4 additions and 2 deletions
6
.github/workflows/github_pages_deploy.yml
vendored
6
.github/workflows/github_pages_deploy.yml
vendored
|
@ -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
|
||||
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue