Skip to content

chore(deps): update codecov/codecov-action action to v4 (#62) #7

chore(deps): update codecov/codecov-action action to v4 (#62)

chore(deps): update codecov/codecov-action action to v4 (#62) #7

on:
push:
branches:
- main
permissions:
contents: write
pull-requests: write
name: release-please
jobs:
release-please:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v4
id: release
with:
release-type: node
package-name: states-us
bootstrap-sha: 760b0c6815f4e5a21508814dc2e2295b4e7c1c3b
- uses: actions/checkout@v4
if: ${{ steps.release.outputs.release_created }}
- uses: actions/setup-node@v4
with:
node-version: 18
registry-url: 'https://registry.npmjs.org'
if: ${{ steps.release.outputs.release_created }}
- run: npm ci
if: ${{ steps.release.outputs.release_created }}
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
if: ${{ steps.release.outputs.release_created }}