Added registry option.

This commit is contained in:
2026-01-01 18:49:47 -08:00
parent 6d93bd9568
commit 9938ed79e4

View File

@@ -32,6 +32,6 @@ runs:
NODE_AUTH_TOKEN: ${{ inputs.apiKey }} NODE_AUTH_TOKEN: ${{ inputs.apiKey }}
run: | run: |
echo "Publishing ${{ inputs.tgz }} to ${{ inputs.registry }}" 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" echo "Package published successfully"
shell: bash shell: bash