Skip to content

fix: unabled initialize consumer with named kafka connection #6

fix: unabled initialize consumer with named kafka connection

fix: unabled initialize consumer with named kafka connection #6

Workflow file for this run

on:
push:
branches:
- master
- main
name: Release
permissions:
id-token: write
contents: write
pull-requests: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: GoogleCloudPlatform/release-please-action@v4
id: release
with:
token: ${{secrets.GITHUB_TOKEN}}
release-type: node
- uses: actions/checkout@v4
if: ${{ steps.release.outputs.release_created }}
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: https://registry.npmjs.org/
if: ${{ steps.release.outputs.release_created }}
- run: corepack pnpm install
if: ${{ steps.release.outputs.release_created }}
- run: npm publish --provenance
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
if: ${{ steps.release.outputs.release_created }}