Skip to content

chore(main): release 0.0.4 (#7) #16

chore(main): release 0.0.4 (#7)

chore(main): release 0.0.4 (#7) #16

on:
push:
branches:
- main
name: release-please
permissions: {}
jobs:
release-please:
permissions:
contents: write # to create release commit (google-github-actions/release-please-action)
pull-requests: write # to create release PR (google-github-actions/release-please-action)
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
id: release
with:
release-type: node
package-name: '@bn3t/ssin-lib'
bump-minor-pre-major: true
bump-patch-for-minor-pre-major: true
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 20
scope: '@bn3t'
- run: npm install npm@latest -g
- run: npm ci
- run: npm run build
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 }}