chore(main): release webdriver-bidi-protocol 0.1.3 (#89) #11
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish | |
permissions: read-all | |
on: | |
workflow_dispatch: | |
push: | |
tags: | |
- "*v*" | |
jobs: | |
npm-publish: | |
name: Publish npm packages | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
fetch-depth: 2 | |
- name: Set npm registry | |
run: npm config set registry 'https://wombat-dressing-room.appspot.com/' | |
- name: Publish packages | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN_RELEASE}} | |
run: | | |
npm config set '//wombat-dressing-room.appspot.com/:_authToken' $NODE_AUTH_TOKEN | |
npm publish |