Skip to content

Commit

Permalink
fix: use verbose flag for publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
AlCalzone committed Jan 11, 2022
1 parent 588cbd2 commit 24dec53
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ jobs:
run: |
yarn config set npmAuthToken "${{ secrets.NPM_TOKEN }}"
yarn npm whoami
yarn workspaces foreach --topological --no-private npm publish --tolerate-republish
yarn workspaces foreach -vti --no-private npm publish --tolerate-republish
- name: Create Github Release
uses: actions/create-release@v1
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -237,9 +237,9 @@ To release changed packages, simply run the following command after bumping the
```bash
# without dist-tags
yarn workspaces foreach --no-private npm publish --tolerate-republish
yarn workspaces foreach -vti --no-private npm publish --tolerate-republish
# with dist-tags
yarn workspaces foreach --no-private npm publish --tolerate-republish --tag my-tag
yarn workspaces foreach -vti --no-private npm publish --tolerate-republish --tag my-tag
```
### Using `lerna`
Expand Down Expand Up @@ -541,7 +541,7 @@ jobs:
run: |
yarn config set npmAuthToken "${{ secrets.NPM_TOKEN }}"
yarn npm whoami
yarn workspaces foreach --topological --no-private npm publish --tolerate-republish
yarn workspaces foreach -vti --no-private npm publish --tolerate-republish
- name: Create Github Release
uses: actions/create-release@v1
Expand Down

0 comments on commit 24dec53

Please sign in to comment.