Skip to content

chore(main): release 3.0.0 (#748) #46

chore(main): release 3.0.0 (#748)

chore(main): release 3.0.0 (#748) #46

Workflow file for this run

name: Publish
permissions: read-all
on:
push:
tags:
- v*
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.0.0
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Publish @puppeteer/replay
env:
NPM_TOKEN: ${{secrets.NPM_TOKEN_REPLAY}}
run: |
npm config set registry 'https://wombat-dressing-room.appspot.com/'
npm config set '//wombat-dressing-room.appspot.com/:_authToken' '${NPM_TOKEN}'
npm publish --access=public