diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 1736bd0..42ff691 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -14,18 +14,16 @@ jobs: with: fetch-depth: 0 - - name: Switch directory - run: cd docs - - uses: actions/setup-node@v4 with: node-version: 20 cache: npm - name: Install dependencies - run: npm ci + run: cd docs && npm ci + - name: Build docs - run: npm run build + run: cd docs && npm run build - name: Upload Build Artifact uses: actions/upload-pages-artifact@v3