fix(ci): Ensure we cleanup the false tag. (#11232)

Co-authored-by: mkorwel <matt.korwel@gmail.com>
This commit is contained in:
Richie Foreman
2025-10-15 19:42:04 -04:00
committed by GitHub
parent 72b2cc54b9
commit e2fef41fe2

View File

@@ -166,6 +166,7 @@ runs:
--dry-run="${{ inputs.dry-run }}" \
--workspace="${{ inputs.core-package-name }}" \
--no-tag
npm dist-tag rm ${{ inputs.core-package-name }} false --silent
- name: '🔗 Install latest core package'
working-directory: '${{ inputs.working-directory }}'
@@ -197,6 +198,7 @@ runs:
--dry-run="${{ inputs.dry-run }}" \
--workspace="${{ inputs.cli-package-name }}" \
--no-tag
npm dist-tag rm ${{ inputs.cli-package-name }} false --silent
- name: 'Get a2a-server Token'
uses: './.github/actions/npm-auth-token'
@@ -219,6 +221,7 @@ runs:
--dry-run="${{ inputs.dry-run }}" \
--workspace="${{ inputs.a2a-package-name }}" \
--no-tag
npm dist-tag rm ${{ inputs.a2a-package-name }} false --silent
- name: '🔬 Verify NPM release by version'
uses: './.github/actions/verify-release'