Skip to content

chore(main): release chromium-bidi 0.9.0 (#2718) #57

chore(main): release chromium-bidi 0.9.0 (#2718)

chore(main): release chromium-bidi 0.9.0 (#2718) #57

Workflow file for this run

name: Publish
# Declare default permissions as read only.
permissions: read-all
env:
FORCE_COLOR: 3
PIP_DISABLE_PIP_VERSION_CHECK: 1
on:
push:
tags:
- '*v*'
jobs:
publish:
name: Publish
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- name: Set up Node.js
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
with:
node-version-file: '.nvmrc'
cache: npm
- name: Install and build npm dependencies
run: npm ci
- name: Publish
env:
NPM_TOKEN: ${{secrets.NPM_TOKEN}}
run: |
npm config set registry 'https://wombat-dressing-room.appspot.com/'
npm config set '//wombat-dressing-room.appspot.com/:_authToken' '${NPM_TOKEN}'
npm publish