fix: set a2a-server publish to --no-tag (#11138)

This commit is contained in:
Adam Weidman
2025-10-14 21:31:30 +02:00
committed by GitHub
parent 0a3e492e6b
commit 8c78b62b75

View File

@@ -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'