Skip to content

Commit

Permalink
ci: fix pack PR script
Browse files Browse the repository at this point in the history
  • Loading branch information
AlCalzone committed Jul 22, 2024
1 parent 38785b5 commit f618d14
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/bot-scripts/packPr.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,16 @@ async function main(param) {
// Bump versions
await exec.exec(
"yarn",
`workspaces foreach version ${newVersion} --deferred`.split(" "),
`workspaces foreach --all version ${newVersion} --deferred`.split(
" ",
),
);
await exec.exec("yarn", ["version", "apply", "--all"]);

// and release changed packages
await exec.exec(
"yarn",
`workspaces foreach -vti --no-private npm publish --tolerate-republish --tag next`
`workspaces foreach --all -vti --no-private npm publish --tolerate-republish --tag next`
.split(
" ",
),
Expand Down

0 comments on commit f618d14

Please sign in to comment.