From 41d1dcd500b8a0747768072064e67dbdf5f310ff Mon Sep 17 00:00:00 2001 From: Bugo Date: Thu, 12 Dec 2024 00:40:16 +0500 Subject: [PATCH] Update docs.yml --- .github/workflows/docs.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 0e38565..b0fedd8 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -23,9 +23,6 @@ jobs: # Build job build: runs-on: ubuntu-latest - defaults: - run: - working-directory: ./docs steps: - name: Checkout uses: actions/checkout@v4 @@ -52,9 +49,12 @@ jobs: restore-keys: | ${{ runner.os }}-nextjs-${{ hashFiles('**/pnpm-lock.yaml') }}- - name: Install dependencies - run: pnpm install + run: | + cd docs + pnpm install - name: Build site with Next.js run: | + cd docs pnpm build touch out/.nojekyll - name: Upload artifact