From 2aa6bbf5853d42a41dea39853586d998587d9106 Mon Sep 17 00:00:00 2001 From: Jaifroid Date: Wed, 18 Jun 2025 06:50:52 +0100 Subject: [PATCH] Revert "Try to fix npm error" This reverts commit 80e4157c92ffb6628f94cabc62b756ac45f46dd0. --- .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 d887d3fd..cec75714 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 install + npm ci 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 install + npm ci npm run build echo "After deployment the production app will be available at https://pwa.kiwix.org" - name: Build docker image and push