From cb061b3a76e027aeba08c9388b0a1ed27a7a58e6 Mon Sep 17 00:00:00 2001 From: Scion Date: Thu, 1 Jan 2026 19:09:30 -0800 Subject: [PATCH] Test --- npm/npm-push/action.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/npm/npm-push/action.yaml b/npm/npm-push/action.yaml index 5e6e8b0..a079e6e 100644 --- a/npm/npm-push/action.yaml +++ b/npm/npm-push/action.yaml @@ -36,7 +36,9 @@ runs: if [[ ! "$TGZ_PATH" =~ ^[./~] ]]; then TGZ_PATH="./$TGZ_PATH" fi + echo "Publishing $TGZ_PATH to ${{ inputs.registry }}" - npm publish "$TGZ_PATH" --registry ${{ inputs.registry }} --access ${{ inputs.access }} + npm publish "$TGZ_PATH" --access ${{ inputs.access }} + echo "Package published successfully" shell: bash