Skip to content

added SCP tenantKind (#12) #27

added SCP tenantKind (#12)

added SCP tenantKind (#12) #27

Workflow file for this run

name: Publish
on:
push:
branches:
- main
jobs:
build:
environment: npm
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
with:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- uses: pnpm/action-setup@v2
- run: pnpm i --frozen-lockfile
- run: pnpm generate-protobuf
- run: pnpm build
- run: npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_KEY }}