File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -342,7 +342,7 @@ jobs:
342
342
- name : Publish packages to npm ("latest" dist-tag)
343
343
run : |
344
344
cd main
345
- 'npm install --global npm@"$(jq .engines.npm package.json)"'
345
+ 'npm install --global npm@"$(jq --raw-output --join-output .engines.npm package.json)"'
346
346
npm ci
347
347
./bin/plugin/cli.js npm-latest --semver minor --ci --repository-path ../publish
348
348
env :
Original file line number Diff line number Diff line change 85
85
if : ${{ github.event.inputs.release_type == 'development' }}
86
86
run : |
87
87
cd cli
88
- 'npm install --global npm@"$(jq .engines.npm package.json)"'
88
+ 'npm install --global npm@"$(jq --raw-output --join-output .engines.npm package.json)"'
89
89
npm ci
90
90
./bin/plugin/cli.js npm-next --ci --repository-path ../publish
91
91
env :
95
95
if : ${{ github.event.inputs.release_type == 'bugfix' }}
96
96
run : |
97
97
cd cli
98
- 'npm install --global npm@"$(jq .engines.npm package.json)"'
98
+ 'npm install --global npm@"$(jq --raw-output --join-output .engines.npm package.json)"'
99
99
npm ci
100
100
./bin/plugin/cli.js npm-bugfix --ci --repository-path ../publish
101
101
env :
@@ -105,7 +105,7 @@ jobs:
105
105
if : ${{ github.event.inputs.release_type == 'wp' && github.event.inputs.wp_version }}
106
106
run : |
107
107
cd publish
108
- 'npm install --global npm@"$(jq .engines.npm package.json)"'
108
+ 'npm install --global npm@"$(jq --raw-output --join-output .engines.npm package.json)"'
109
109
npm ci
110
110
npx lerna publish patch --dist-tag wp-${{ github.event.inputs.wp_version }} --no-private --yes --no-verify-access
111
111
env :
You can’t perform that action at this time.
0 commit comments