devops: start actually publishing @next versions for tip-of-tree commits (#1893)

The https://github.com/microsoft/playwright/runs/603719537 was pretty
successful.
This commit is contained in:
Andrey Lushnikov 2020-04-20 23:52:03 -07:00 committed by GitHub
parent 5b085fdf03
commit 96331de1f1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -67,10 +67,10 @@ else
fi
npm run clean
npm publish . --tag="${NPM_PUBLISH_TAG}" --dry-run
npm publish packages/playwright-firefox --tag="${NPM_PUBLISH_TAG}" --dry-run
npm publish packages/playwright-webkit --tag="${NPM_PUBLISH_TAG}" --dry-run
npm publish packages/playwright-chromium --tag="${NPM_PUBLISH_TAG}" --dry-run
npm publish packages/playwright --tag="${NPM_PUBLISH_TAG}" --dry-run
npm publish . --tag="${NPM_PUBLISH_TAG}"
npm publish packages/playwright-firefox --tag="${NPM_PUBLISH_TAG}"
npm publish packages/playwright-webkit --tag="${NPM_PUBLISH_TAG}"
npm publish packages/playwright-chromium --tag="${NPM_PUBLISH_TAG}"
npm publish packages/playwright --tag="${NPM_PUBLISH_TAG}"
echo "Done."