Skip to content

build(deps-dev): bump @types/node from 20.8.0 to 20.8.3 (#2232) #320

build(deps-dev): bump @types/node from 20.8.0 to 20.8.3 (#2232)

build(deps-dev): bump @types/node from 20.8.0 to 20.8.3 (#2232) #320

Workflow file for this run

on:
push:
branches:
- master
name: release-please
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
id: release
with:
release-type: node
package-name: mysql2
changelog-path: 'Changelog.md'
- uses: actions/checkout@v3
if: ${{ steps.release.outputs.release_created }}
- uses: actions/setup-node@v3
if: ${{ steps.release.outputs.release_created }}
with:
node-version: 16
registry-url: 'https://registry.npmjs.org'
- run: npm ci
if: ${{ steps.release.outputs.release_created }}
- run: npm publish
if: ${{ steps.release.outputs.release_created }}
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}