File tree Expand file tree Collapse file tree 1 file changed +10
-13
lines changed Expand file tree Collapse file tree 1 file changed +10
-13
lines changed Original file line number Diff line number Diff line change @@ -29,17 +29,14 @@ jobs:
29
29
with :
30
30
node-version : 18
31
31
registry-url : ' https://registry.npmjs.org'
32
- - name : Build Packages
32
+ - name : Install Dependencies
33
+ run : npm ci
33
34
if : ${{ steps.release.outputs.releases_created }}
34
- run : |
35
- npm install
36
- npx lerna bootstrap
37
-
38
- # Release Please has already incremented versions and published tags, so we just
39
- # need to publish all unpublished versions to NPM here
40
- # See: https://github.com/lerna/lerna/tree/main/commands/publish#bump-from-package
41
- # - name: Publish to NPM
42
- # if: ${{ steps.release.outputs.releases_created }}
43
- # env:
44
- # NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
45
- # run: npx lerna publish from-package --no-push --no-private --yes
35
+ - name : Publish to npm
36
+ # Release Please has already incremented versions and published tags, so we just
37
+ # need to publish all unpublished versions to NPM here
38
+ # See: https://github.com/lerna/lerna/tree/main/commands/publish#bump-from-package
39
+ if : ${{ steps.release.outputs.releases_created }}
40
+ run : npm publish --provenance
41
+ env :
42
+ NODE_AUTH_TOKEN : ${{secrets.NPM_TOKEN}}
You can’t perform that action at this time.
0 commit comments