From 0a0dd9367a3e67e9b8e5fd2d8a35b747a355685e Mon Sep 17 00:00:00 2001 From: Renato Lima Date: Fri, 9 Jun 2023 18:59:40 -0300 Subject: [PATCH] Fix website directory --- .github/workflows/website-deploy-test.yml | 8 ++++++-- .github/workflows/website-deploy.yml | 8 ++++++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.github/workflows/website-deploy-test.yml b/.github/workflows/website-deploy-test.yml index 5e572f9..620e36a 100644 --- a/.github/workflows/website-deploy-test.yml +++ b/.github/workflows/website-deploy-test.yml @@ -17,6 +17,10 @@ jobs: cache: yarn - name: Install dependencies - run: yarn install --frozen-lockfile + run: | + cd website + yarn install --frozen-lockfile - name: Test build website - run: yarn build \ No newline at end of file + run: | + cd website + yarn build \ No newline at end of file diff --git a/.github/workflows/website-deploy.yml b/.github/workflows/website-deploy.yml index 9666fc6..046c783 100644 --- a/.github/workflows/website-deploy.yml +++ b/.github/workflows/website-deploy.yml @@ -19,9 +19,13 @@ jobs: cache: yarn - name: Install dependencies - run: yarn install --frozen-lockfile + run: | + cd website + yarn install --frozen-lockfile - name: Build website - run: yarn build + run: | + cd website + yarn build # Popular action to deploy to GitHub Pages: # Docs: https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-docusaurus