From 4a5783ae51b7631455cc71377c67e8e51dcbc3c2 Mon Sep 17 00:00:00 2001 From: Jordan Eldredge Date: Mon, 15 Jun 2026 20:50:03 -0700 Subject: [PATCH] Fix CI: allow same version in npm version for tagged releases Co-Authored-By: Claude Opus 4.6 --- .github/workflows/ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c1d5fb5a..2abdeaa3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -91,10 +91,9 @@ jobs: run: | VERSION=${GITHUB_REF_NAME#v} echo "Setting version to $VERSION for tagged release" - cd packages/webamp && npm version $VERSION --no-git-tag-version - cd ../ani-cursor && npm version $VERSION --no-git-tag-version - cd ../winamp-eqf && npm version $VERSION --no-git-tag-version - # TODO: Update version number in webampLazy.tsx if needed + cd packages/webamp && npm version $VERSION --no-git-tag-version --allow-same-version + cd ../ani-cursor && npm version $VERSION --no-git-tag-version --allow-same-version + cd ../winamp-eqf && npm version $VERSION --no-git-tag-version --allow-same-version - name: Publish ani-cursor to npm working-directory: ./packages/ani-cursor if: github.ref == 'refs/heads/master' || (github.ref_type == 'tag' && startsWith(github.ref_name, 'v'))