From bd4a4829ccceb20fc6ae0a8abd9837159968689e Mon Sep 17 00:00:00 2001 From: Willie Chalmers III Date: Sat, 19 Sep 2026 20:30:03 -0700 Subject: [PATCH] fix: allow manual package publication Skip the release-tag assertion for authorized manual GitHub Packages publication without changing package versions. Co-authored-by: Codex --- .github/workflows/publish.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 3a1a21f..b2f90f8 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -37,6 +37,7 @@ jobs: registry-url: https://npm.pkg.github.com - name: Confirm release version + if: github.event_name == 'release' run: | PACKAGE_VERSION="$(node -p "require('./packages/analytics/package.json').version")" test "v${PACKAGE_VERSION}" = "${GITHUB_REF_NAME}"