From cde255d8c39dbd91dd380f5b9aeeb0b23c5a31af Mon Sep 17 00:00:00 2001 From: Christoph Brandau Date: Tue, 30 Jun 2026 15:01:45 +0200 Subject: [PATCH] update --- .gitea/workflows/app_builder.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/app_builder.yaml b/.gitea/workflows/app_builder.yaml index 6aba356..5645c24 100644 --- a/.gitea/workflows/app_builder.yaml +++ b/.gitea/workflows/app_builder.yaml @@ -85,7 +85,9 @@ jobs: run: | git config user.name '${{ vars.USERNAME_GIT }}' git config user.email '${{ vars.EMAIL_GIT }}' - git add package.json src-tauri/tauri.conf.json + # npm version also bumps the version inside package-lock.json, so stage it + # too -- otherwise it stays as an unstaged change and blocks the rebase. + git add package.json package-lock.json src-tauri/tauri.conf.json git commit -m 'Update version to ${{ github.ref_name }}' if ($LASTEXITCODE -ne 0) {