diff --git a/.github/actions/publish-release/action.yml b/.github/actions/publish-release/action.yml index 45d720e7fa..c34f4c8e0a 100644 --- a/.github/actions/publish-release/action.yml +++ b/.github/actions/publish-release/action.yml @@ -174,9 +174,9 @@ runs: npm publish \ --dry-run="${INPUTS_DRY_RUN}" \ --workspace="${INPUTS_CORE_PACKAGE_NAME}" \ - --no-tag + --tag staging-tmp if [[ "${INPUTS_DRY_RUN}" == "false" ]]; then - npm dist-tag rm ${INPUTS_CORE_PACKAGE_NAME} false + npm dist-tag rm ${INPUTS_CORE_PACKAGE_NAME} staging-tmp fi - name: '🔗 Install latest core package' @@ -222,9 +222,9 @@ runs: npm publish \ --dry-run="${INPUTS_DRY_RUN}" \ --workspace="${INPUTS_CLI_PACKAGE_NAME}" \ - --no-tag + --tag staging-tmp if [[ "${INPUTS_DRY_RUN}" == "false" ]]; then - npm dist-tag rm ${INPUTS_CLI_PACKAGE_NAME} false + npm dist-tag rm ${INPUTS_CLI_PACKAGE_NAME} staging-tmp fi - name: 'Get a2a-server Token' @@ -249,9 +249,9 @@ runs: npm publish \ --dry-run="${INPUTS_DRY_RUN}" \ --workspace="${INPUTS_A2A_PACKAGE_NAME}" \ - --no-tag + --tag staging-tmp if [[ "${INPUTS_DRY_RUN}" == "false" ]]; then - npm dist-tag rm ${INPUTS_A2A_PACKAGE_NAME} false + npm dist-tag rm ${INPUTS_A2A_PACKAGE_NAME} staging-tmp fi - name: '🔬 Verify NPM release by version'