Don't try removing a tag from a non-existent release. (#23830)

This commit is contained in:
Tommaso Sciortino
2026-03-25 22:27:17 +00:00
committed by GitHub
parent 20fd405f9c
commit b91758bf6b

View File

@@ -221,7 +221,9 @@ runs:
--dry-run="${INPUTS_DRY_RUN}" \
--workspace="${INPUTS_CLI_PACKAGE_NAME}" \
--no-tag
npm dist-tag rm ${INPUTS_CLI_PACKAGE_NAME} false
if [[ "${INPUTS_DRY_RUN}" == "false" ]]; then
npm dist-tag rm ${INPUTS_CLI_PACKAGE_NAME} false
fi
- name: 'Get a2a-server Token'
uses: './.github/actions/npm-auth-token'