From 4b873194c95c1d005c3eaeb3235660fd270dfa40 Mon Sep 17 00:00:00 2001 From: hsiegeln <37154749+hsiegeln@users.noreply.github.com> Date: Tue, 24 Mar 2026 19:05:08 +0100 Subject: [PATCH] fix(ci): add --allow-same-version to npm version in publish workflow The tag push job fails with "Version not changed" when package.json already has the correct version from the bump commit. Co-Authored-By: Claude Opus 4.6 (1M context) --- .gitea/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/publish.yml b/.gitea/workflows/publish.yml index d5b82b7..fe6c759 100644 --- a/.gitea/workflows/publish.yml +++ b/.gitea/workflows/publish.yml @@ -28,7 +28,7 @@ jobs: case "$GITHUB_REF" in refs/tags/v*) VERSION="${GITHUB_REF_NAME#v}" - npm version "$VERSION" --no-git-tag-version + npm version "$VERSION" --no-git-tag-version --allow-same-version TAG="latest" ;; *)