From 8556a92255265841dca135bca9ffaca2f70535c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romaric=20Philog=C3=A8ne?= Date: Sun, 21 Apr 2024 10:20:26 -0700 Subject: [PATCH] wip(docs): update docs --- .github/workflows/website.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml index ee0f2bc..a1d1548 100644 --- a/.github/workflows/website.yml +++ b/.github/workflows/website.yml @@ -5,6 +5,10 @@ on: branches: - main +defaults: + run: + working-directory: ./website + jobs: build: name: Build Docusaurus @@ -13,23 +17,22 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 + - uses: actions/setup-node@v4 with: node-version: 18 - cache: npm + # cache: npm - name: Install dependencies - working-directory: ./website run: npm ci - name: Build website - working-directory: ./website run: npm run build - name: Upload Build Artifact uses: actions/upload-pages-artifact@v3 with: - path: ./website/build + path: build deploy: name: Deploy Doc to GitHub Pages