From fc0d141c146a0ff101c3bbfc326089a2cfb65d0a Mon Sep 17 00:00:00 2001 From: Francesco Canovai Date: Thu, 8 May 2025 12:00:09 +0200 Subject: [PATCH] ci: fix setup-node action (#326) Fix the workflow to publish docs. It was trying to install npm dependencies when the documentation uses yarn. Closes #324 Signed-off-by: Francesco Canovai --- .github/workflows/publish-docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-docs.yml b/.github/workflows/publish-docs.yml index 029c360..4366b46 100644 --- a/.github/workflows/publish-docs.yml +++ b/.github/workflows/publish-docs.yml @@ -31,7 +31,7 @@ jobs: node-version: latest check-latest: 'false' cache: yarn - cache-dependency-path: web/package-lock.json + cache-dependency-path: web/yarn.lock - name: Setup Pages uses: actions/configure-pages@v5