From 1f2aad9764c5bd17d2a94c029c9a7ca33e6651c6 Mon Sep 17 00:00:00 2001 From: DidierRLopes Date: Sat, 25 Nov 2023 21:48:00 -0800 Subject: [PATCH] Update github-pages.yml --- .github/workflows/github-pages.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml index 0f5b4f26bb..1d727154db 100644 --- a/.github/workflows/github-pages.yml +++ b/.github/workflows/github-pages.yml @@ -24,15 +24,13 @@ jobs: with: node-version: 18 cache: yarn - cache-dependency-path: website/yarn.lock + cache-dependency-path: yarn.lock - name: Install dependencies run: yarn install - working-directory: website - name: Build website run: yarn build - working-directory: website # Popular action to deploy to GitHub Pages: # Docs: https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-docusaurus @@ -46,7 +44,7 @@ jobs: startsWith(github.head_ref, 'docs/')) with: github_token: ${{ secrets.DEPLOY_TOKEN }} - publish_dir: ./website/build + publish_dir: ./build # The following lines assign commit authorship to the official # GH-Actions bot for deploys to `gh-pages` branch: # https://github.com/actions/checkout/issues/13#issuecomment-724415212