From e5f02f3bcc4264c940a9c88a02f0427c3ca5962f Mon Sep 17 00:00:00 2001 From: Patrick Niebeling Date: Thu, 13 Aug 2026 10:34:55 +0200 Subject: [PATCH] Fix build-release.yml: use npm install, not npm ci No package-lock.json is committed (intentionally gitignored), so npm ci has nothing to install from and fails with EUSAGE. --- .gitea/workflows/build-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build-release.yml b/.gitea/workflows/build-release.yml index c9fd0ea..ac1d7b7 100644 --- a/.gitea/workflows/build-release.yml +++ b/.gitea/workflows/build-release.yml @@ -21,7 +21,7 @@ jobs: coverage: none - name: Install JS dependencies - run: npm ci + run: npm install - name: Build frontend run: npm run build