From 7e630f9337ff41b44a83d5c8a94e9d72f8f7d54e Mon Sep 17 00:00:00 2001 From: StarFleetCPTN <2897199+StarFleetCPTN@users.noreply.github.com> Date: Sat, 12 Apr 2025 13:26:47 -0700 Subject: [PATCH] Update docusaurus-deploy.yml --- .github/workflows/docusaurus-deploy.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docusaurus-deploy.yml b/.github/workflows/docusaurus-deploy.yml index 436a9d4..4b6b46f 100644 --- a/.github/workflows/docusaurus-deploy.yml +++ b/.github/workflows/docusaurus-deploy.yml @@ -33,14 +33,14 @@ jobs: uses: actions/setup-node@v4 with: node-version: 18 - cache: yarn - cache-dependency-path: docs/yarn.lock + cache: npm + cache-dependency-path: ./docs/package-lock.json - name: Install dependencies - run: yarn install --frozen-lockfile + run: npm ci - name: Build - run: yarn build + run: npm run build - name: Setup Pages uses: actions/configure-pages@v4