From 9938ed79e4831f6d8cd81f8337d0252b2f52e983 Mon Sep 17 00:00:00 2001 From: Scion Date: Thu, 1 Jan 2026 18:49:47 -0800 Subject: [PATCH] Added registry option. --- npm/npm-push/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/npm/npm-push/action.yaml b/npm/npm-push/action.yaml index e5369db..c8ac0ae 100644 --- a/npm/npm-push/action.yaml +++ b/npm/npm-push/action.yaml @@ -32,6 +32,6 @@ runs: NODE_AUTH_TOKEN: ${{ inputs.apiKey }} run: | echo "Publishing ${{ inputs.tgz }} to ${{ inputs.registry }}" - npm publish ${{ inputs.tgz }} --access ${{ inputs.access }} + npm publish ${{ inputs.tgz }} --registry ${{ inputs.registry }} --access ${{ inputs.access }} echo "Package published successfully" shell: bash