playwright/.github/workflows/publish_canary_npm.yml
Max Schmitt 96d611ed7d
devops: publish devrelease:npm to beta on release branches (#9949)
Co-authored-by: Andrey Lushnikov <aslushnikov@gmail.com>
2021-11-01 17:29:56 -07:00

41 lines
1.1 KiB
YAML

name: "devrelease:npm"
on:
workflow_dispatch:
schedule:
- cron: "10 0 * * *"
push:
branches:
- release-*
jobs:
publish-canary-npm:
name: "publish to NPM"
runs-on: ubuntu-20.04
if: github.repository == 'microsoft/playwright'
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 12
registry-url: 'https://registry.npmjs.org'
- run: npm i -g npm@7
- run: npm ci
- run: npm run build
- run: npx playwright install-deps
- name: Publish to NPM (@next)
if: contains(github.ref, 'master') && github.event_name != 'workflow_dispatch'
run: |
node utils/build/update_canary_version.js --today-date
utils/publish_all_packages.sh --tip-of-tree
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Publish to NPM (@beta)
if: contains(github.ref, 'release') || github.event_name == 'workflow_dispatch'
run: |
node utils/build/update_canary_version.js --commit-timestamp
utils/publish_all_packages.sh --beta
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}