Skip to content

test: remove dependency on "true" which is not on all windows sytems #5

test: remove dependency on "true" which is not on all windows sytems

test: remove dependency on "true" which is not on all windows sytems #5

on:
push:
branches:
- main
name: release-please
jobs:
release-please:
runs-on: ubuntu-latest
if: github.repository == 'istanbuljs/nyc'
steps:
- uses: google-github-actions/release-please-action@v4
id: release
with:
token: ${{ secrets.GITHUB_TOKEN }}
release-type: node
# The logic below handles the npm publication:
- 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: 16
cache: npm
if: ${{ steps.release.outputs.release_created }}
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
if: ${{ steps.release.outputs.release_created }}