docs
This commit is contained in:
parent
c99af18ae4
commit
ca565e2530
26 changed files with 209 additions and 104 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
|
@ -124,10 +124,10 @@ jobs:
|
|||
node-version: "20"
|
||||
|
||||
- name: Install docs dependencies
|
||||
run: npm install --prefix website
|
||||
run: npm install --prefix docs/website
|
||||
|
||||
- name: Docs build
|
||||
run: npm --prefix website run build
|
||||
run: npm --prefix docs/website run build
|
||||
|
||||
docker-publish:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
|||
7
.github/workflows/docs-pages.yml
vendored
7
.github/workflows/docs-pages.yml
vendored
|
|
@ -7,7 +7,6 @@ on:
|
|||
- main
|
||||
paths:
|
||||
- docs/**
|
||||
- website/**
|
||||
- .github/workflows/docs-pages.yml
|
||||
|
||||
permissions:
|
||||
|
|
@ -33,15 +32,15 @@ jobs:
|
|||
node-version: "20"
|
||||
|
||||
- name: Install docs dependencies
|
||||
run: npm install --prefix website
|
||||
run: npm install --prefix docs/website
|
||||
|
||||
- name: Build docs site
|
||||
run: npm --prefix website run build
|
||||
run: npm --prefix docs/website run build
|
||||
|
||||
- name: Upload pages artifact
|
||||
uses: actions/upload-pages-artifact@v3
|
||||
with:
|
||||
path: website/build
|
||||
path: docs/website/build
|
||||
|
||||
deploy:
|
||||
needs: build
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue