From 8c78b62b7505db74afe7a69319ddb054c15d81ce Mon Sep 17 00:00:00 2001 From: Adam Weidman <65992621+adamfweidman@users.noreply.github.com> Date: Tue, 14 Oct 2025 21:31:30 +0200 Subject: [PATCH] fix: set a2a-server publish to --no-tag (#11138) --- .github/actions/publish-release/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/publish-release/action.yml b/.github/actions/publish-release/action.yml index 12d7a4d156..220224b1ea 100644 --- a/.github/actions/publish-release/action.yml +++ b/.github/actions/publish-release/action.yml @@ -209,9 +209,9 @@ runs: # Tag staging for initial release run: | if [ "${{ inputs.dry-run }}" == "true" ]; then - npm publish --dry-run --workspace="@google/gemini-cli-a2a-server" --tag "staging" + npm publish --dry-run --workspace="@google/gemini-cli-a2a-server" --no-tag else - npm publish --workspace="@google/gemini-cli-a2a-server" --tag "staging" + npm publish --workspace="@google/gemini-cli-a2a-server" --no-tag fi - name: '🔬 Verify NPM release by version'