We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b517d6 commit 3611ca3Copy full SHA for 3611ca3
.github/workflows/publish.yaml
@@ -46,7 +46,7 @@ jobs:
46
run: "pnpm run test"
47
48
- name: "Versioning"
49
- run: "pnpm exec lerna version ${{ github.event.inputs.next_version }} --no-push --force-publish -y"
+ run: "pnpm exec lerna version ${{ github.event.inputs.next_version }} --no-push --force-publish --yes"
50
51
- name: "Adjust PeerDependencies"
52
run: |
@@ -65,7 +65,7 @@ jobs:
65
git tag v${{ github.event.inputs.next_version }} -f
66
67
- name: "Publish to npm"
68
- run: "pnpm exec lerna publish from-git ${{ github.event.inputs.stable_release == 'true' && ' ' || '--dist-tag next' }}"
+ run: "pnpm exec lerna publish from-git --yes ${{ github.event.inputs.stable_release == 'true' && ' ' || '--dist-tag next' }}"
69
env:
70
NODE_AUTH_TOKEN: "${{ secrets.NPM_TOKEN }}"
71
0 commit comments