chore: resubmit a2a-publishing after rollout (#11100)

This commit is contained in:
Adam Weidman
2025-10-14 17:09:17 +02:00
committed by GitHub
parent b2ba67f337
commit 481ba01c97
8 changed files with 47 additions and 1 deletions
+13 -1
View File
@@ -17,6 +17,9 @@ inputs:
wombat-token-cli:
description: 'The npm token for wombat @google/gemini-cli'
required: true
wombat-token-a2a-server:
description: 'The npm token for the @google/gemini-cli-a2a-server package.'
required: true
runs:
using: 'composite'
@@ -52,9 +55,18 @@ runs:
run: |
npm dist-tag add @google/gemini-cli@${{ inputs.version }} ${{ inputs.channel }}
- name: 'Change tag for @google/gemini-cli-a2a-server'
if: |-
${{ inputs.dry-run == 'false' }}
env:
NODE_AUTH_TOKEN: '${{ inputs.wombat-token-a2a-server }}'
shell: 'bash'
run: |
npm dist-tag add @google/gemini-cli-a2a-server@${{ inputs.version }} ${{ inputs.channel }}
- name: 'Log dry run'
if: |-
${{ inputs.dry-run == 'true' }}
shell: 'bash'
run: |
echo "Dry run: Would have added tag '${{ inputs.channel }}' to version '${{ inputs.version }}' for @google/gemini-cli and @google/gemini-cli-core."
echo "Dry run: Would have added tag '${{ inputs.channel }}' to version '${{ inputs.version }}' for @google/gemini-cli, @google/gemini-cli-core, and @google/gemini-cli-a2a-server."