From 20e10c550f4db890fde8257c479d4012d50457f0 Mon Sep 17 00:00:00 2001 From: Matan Kushner Date: Sat, 15 May 2021 10:26:48 -0400 Subject: ci: set the working directory when building docs --- .github/workflows/deploy.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 58066f8c2..3b67bc0d1 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -186,10 +186,12 @@ jobs: uses: actions/checkout@v2.3.4 - name: Setup | Install dependencies - run: cd docs && npm install + run: npm install + working-directory: docs - name: Build | Build docs site run: npm run build + working-directory: docs - name: Publish uses: netlify/actions/cli@master @@ -198,3 +200,4 @@ jobs: env: NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} + working-directory: docs -- cgit v1.2.3