From 21ae47780eb3f581260c336fef0bad2e6a0df209 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jesu=CC=81s=20Garci=CC=81a?= Date: Thu, 21 Apr 2022 11:05:58 +0200 Subject: [PATCH] fix: correct location for gh actions --- .github/workflows/documentation-deploy.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/documentation-deploy.yml b/.github/workflows/documentation-deploy.yml index 6af79bff1..bf677de0e 100644 --- a/.github/workflows/documentation-deploy.yml +++ b/.github/workflows/documentation-deploy.yml @@ -39,7 +39,9 @@ jobs: # install dependencies if the cache did not hit - name: Install dependencies if: steps.yarn-cache.outputs.cache-hit != 'true' - run: yarn --frozen-lockfile + run: | + cd documentation + yarn --frozen-lockfile # run build script - name: Build VuePress site