Skip to content

chore(deps): bump json5 from 1.0.1 to 1.0.2 (#37) #32

chore(deps): bump json5 from 1.0.1 to 1.0.2 (#37)

chore(deps): bump json5 from 1.0.1 to 1.0.2 (#37) #32

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
# The logic below handles the npm publication:
- uses: actions/checkout@v3
if: ${{ steps.release.outputs.release_created }}
- uses: actions/setup-node@v3
with:
node-version: 16
registry-url: 'https://registry.npmjs.org'
if: ${{ steps.release.outputs.release_created }}
- name: Run prerelease scripts
run: |
npm ci
npm run prerelease
if: ${{ steps.release.outputs.release_created }}
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
if: ${{ steps.release.outputs.release_created }}