Skip to content

chore(master): release 2.6.0 (#92) #73

chore(master): release 2.6.0 (#92)

chore(master): release 2.6.0 (#92) #73

Workflow file for this run

on:
push:
branches: [master]
name: release-please
jobs:
release-please:
runs-on: ubuntu-latest
outputs:
did-create-release: ${{ steps.release.outputs.release_created }}
steps:
- uses: google-github-actions/release-please-action@v3
id: release
with:
release-type: node
package-name: "@circle-fin/circle-sdk"
changelog-types: |
[
{"type":"feat","section":"New Features","hidden":false},
{"type":"fix","section":"Fixes","hidden":false},
{"type":"chore","section":"Miscellaneous","hidden":true}
]
npm-publish:
needs: release-please
if: needs.release-please.outputs.did-create-release
uses: ./.github/workflows/npm-publish.yml
secrets: inherit