Skip to content

Commit

Permalink
Update to latest npm matching engines.npm when publishing packages
Browse files Browse the repository at this point in the history
  • Loading branch information
sirreal committed Jan 11, 2024
1 parent cd548af commit b74402c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build-plugin-zip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,7 @@ jobs:
- name: Publish packages to npm ("latest" dist-tag)
run: |
cd main
'npm install --global npm@"$(jq .engines.npm package.json)"'
npm ci
./bin/plugin/cli.js npm-latest --semver minor --ci --repository-path ../publish
env:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/publish-npm-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ jobs:
if: ${{ github.event.inputs.release_type == 'development' }}
run: |
cd cli
'npm install --global npm@"$(jq .engines.npm package.json)"'
npm ci
./bin/plugin/cli.js npm-next --ci --repository-path ../publish
env:
Expand All @@ -94,6 +95,7 @@ jobs:
if: ${{ github.event.inputs.release_type == 'bugfix' }}
run: |
cd cli
'npm install --global npm@"$(jq .engines.npm package.json)"'
npm ci
./bin/plugin/cli.js npm-bugfix --ci --repository-path ../publish
env:
Expand All @@ -103,6 +105,7 @@ jobs:
if: ${{ github.event.inputs.release_type == 'wp' && github.event.inputs.wp_version }}
run: |
cd publish
'npm install --global npm@"$(jq .engines.npm package.json)"'
npm ci
npx lerna publish patch --dist-tag wp-${{ github.event.inputs.wp_version }} --no-private --yes --no-verify-access
env:
Expand Down

0 comments on commit b74402c

Please sign in to comment.