From 4cbfcfb3366c989927e11b7e8946289f0fa73bb9 Mon Sep 17 00:00:00 2001 From: JackNoordhuis Date: Mon, 25 Sep 2023 19:02:43 +1000 Subject: [PATCH] Publish Pages workflow: use package.json clean-install command and not npm ci * forgot the run >:) --- .github/workflows/pages-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pages-publish.yml b/.github/workflows/pages-publish.yml index 06e0777..a26ae1f 100644 --- a/.github/workflows/pages-publish.yml +++ b/.github/workflows/pages-publish.yml @@ -103,7 +103,7 @@ jobs: key: ${{ runner.os }}}-${{ env.NODE_VERSION }}-node_modules-${{ hashFiles('package.json') }} - name: Install dependencies - run: npm clean-install + run: npm run clean-install - name: Build example project run: npm run build-dist