Skip to content

chore(deps): bump path-to-regexp from 6.2.2 to 6.3.0 (#397) #117

chore(deps): bump path-to-regexp from 6.2.2 to 6.3.0 (#397)

chore(deps): bump path-to-regexp from 6.2.2 to 6.3.0 (#397) #117

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
id: release
with:
token: ${{ secrets.BOT_TOKEN }}
release-type: node
package-name: 'rest-on-couch'
- uses: actions/checkout@v3
# These if statements ensure that a publication only occurs when a new release is created
if: ${{ steps.release.outputs.release_created }}
- uses: actions/setup-node@v3
with:
node-version: 20.x
registry-url: 'https://registry.npmjs.org'
if: ${{ steps.release.outputs.release_created }}
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_BOT_TOKEN }}
if: ${{ steps.release.outputs.release_created }}