From 80e4157c92ffb6628f94cabc62b756ac45f46dd0 Mon Sep 17 00:00:00 2001 From: Jaifroid Date: Tue, 17 Jun 2025 20:50:23 +0100 Subject: [PATCH] Try to fix npm error --- .github/workflows/publish-docker.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-docker.yaml b/.github/workflows/publish-docker.yaml index cec75714..d887d3fd 100644 --- a/.github/workflows/publish-docker.yaml +++ b/.github/workflows/publish-docker.yaml @@ -48,12 +48,12 @@ jobs: - name: Build app with src bundle if: github.event.inputs.target == 'ghpages' || github.event_name == 'push' run: | - npm ci + npm install npm run build-src - name: Build app with production bundle (src bundle also provided) if: github.event.inputs.target == 'docker' || github.event_name == 'release' run: | - npm ci + npm install npm run build echo "After deployment the production app will be available at https://pwa.kiwix.org" - name: Build docker image and push