From e2fef41fe2b313aaaad8c3f96faba9d418178236 Mon Sep 17 00:00:00 2001 From: Richie Foreman Date: Wed, 15 Oct 2025 19:42:04 -0400 Subject: [PATCH] fix(ci): Ensure we cleanup the `false` tag. (#11232) Co-authored-by: mkorwel --- .github/actions/publish-release/action.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/actions/publish-release/action.yml b/.github/actions/publish-release/action.yml index e2b8994e40..62411fb272 100644 --- a/.github/actions/publish-release/action.yml +++ b/.github/actions/publish-release/action.yml @@ -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'