devops: update publish script to work for @next (#5072)

This commit is contained in:
Dmitry Gozman 2021-01-20 13:38:03 -08:00 committed by GitHub
parent 5bb20fb820
commit 0d0a6e8f82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 4 deletions

View File

@ -20,7 +20,7 @@ jobs:
- uses: microsoft/playwright-github-action@v1
- run: npm ci
- run: npm run build
- run: node utils/build/update_canary_version.js
# publish_all_packages.sh updates the version automatically
- run: utils/publish_all_packages.sh --tip-of-tree
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

View File

@ -41,14 +41,18 @@ fi
cd ..
NPM_PUBLISH_TAG="next"
VERSION=$(node -e 'console.log(require("./package.json").version)')
if [[ -n $(git status -s) ]]; then
echo "ERROR: git status is dirty; some uncommitted changes or untracked files"
exit 1
fi
NPM_PUBLISH_TAG="next"
if [[ $1 == "--tip-of-tree" ]]; then
node utils/build/update_canary_version.js
fi
VERSION=$(node -e 'console.log(require("./package.json").version)')
if [[ $1 == "--release" ]]; then
# Ensure package version does not contain dash.
if [[ "${VERSION}" == *-* ]]; then
@ -76,6 +80,8 @@ else
exit 1
fi
echo "==================== Building version ${VERSION} ================"
PLAYWRIGHT_TGZ="$PWD/playwright.tgz"
PLAYWRIGHT_CORE_TGZ="$PWD/playwright-core.tgz"
PLAYWRIGHT_WEBKIT_TGZ="$PWD/playwright-webkit.tgz"
@ -87,6 +93,8 @@ node ./packages/build_package.js playwright-webkit "${PLAYWRIGHT_WEBKIT_TGZ}"
node ./packages/build_package.js playwright-firefox "${PLAYWRIGHT_FIREFOX_TGZ}"
node ./packages/build_package.js playwright-chromium "${PLAYWRIGHT_CHROMIUM_TGZ}"
echo "==================== Publishing version ${VERSION} ================"
npm publish ${PLAYWRIGHT_TGZ} --tag="${NPM_PUBLISH_TAG}"
npm publish ${PLAYWRIGHT_CORE_TGZ} --tag="${NPM_PUBLISH_TAG}"
npm publish ${PLAYWRIGHT_WEBKIT_TGZ} --tag="${NPM_PUBLISH_TAG}"