Skip to content

Commit

Permalink
chore(ci): fix publish_all_packages.sh on travis
Browse files Browse the repository at this point in the history
  • Loading branch information
aslushnikov committed Mar 3, 2020
1 parent 64e5e21 commit 0188889
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion utils/publish_all_packages.sh
Expand Up @@ -73,7 +73,8 @@ elif [[ $1 == "--tip-of-tree" ]]; then
echo "Did not find \$CI env - cannot publish tip-of-tree release not from CI"
exit 1
fi
npm run clean
# We don't do `npm run clean` here since travis deploy will remove node
# modules, and our `npm run clean` relies on `rimraf` to be installed.
npm publish . --tag="next"
npm publish packages/playwright-firefox --tag="next"
npm publish packages/playwright-webkit --tag="next"
Expand Down

0 comments on commit 0188889

Please sign in to comment.