Skip to content

Commit 640fdd5

Browse files
authoredSep 12, 2023
Merge pull request #5 from wyvox/NullVoxPopuli-patch-1
Add `node-registry-url` to options to pass through to pnpm-action, fixing certain npm publish workflows
2 parents 9b938fd + c5b2901 commit 640fdd5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
 

‎action.yml

+5
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ inputs:
99
node-version:
1010
description: "Override the default node version, or override what is specified in your project's volta config"
1111
required: false
12+
node-registry-url:
13+
description: "Optional registry to set up for auth. Will set the registry in a project level .npmrc and .yarnrc file, and set up auth to read in from env.NODE_AUTH_TOKEN."
14+
required: false
15+
default: ''
1216
pnpm-version:
1317
description: 'Override the default pnpm version, which defaults to the latest 8.x'
1418
required: false
@@ -51,4 +55,5 @@ runs:
5155
node-version: ${{ inputs.node-version }}
5256
pnpm-version: ${{ inputs.pnpm-version }}
5357
args: ${{ inputs.pnpm-args }}
58+
node-registry-url: ${{ inputs.node-registry-url }}
5459

0 commit comments

Comments
 (0)