Skip to content

Bump grpc-js to 1.10.9 #32

Bump grpc-js to 1.10.9

Bump grpc-js to 1.10.9 #32

name: Publish package to GitHub Packages
on:
workflow_dispatch:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
defaults:
run:
working-directory: ./tools/chaincode-integration
steps:
- uses: actions/checkout@v3
# Setup .npmrc file to publish to GitHub Packages
- uses: actions/setup-node@v3
with:
node-version: '16.x'
registry-url: 'https://npm.pkg.github.com'
- name: Build
run: |
npm ci
npm run build --if-present
- name: Publish
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}