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