39 lines
774 B
YAML
39 lines
774 B
YAML
name: Publish Package to npmjs
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: arduino/setup-protoc@v2
|
|
|
|
# Setup .npmrc file to publish to npm
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: '20.x'
|
|
registry-url: 'https://registry.npmjs.org'
|
|
|
|
- run: npm ci
|
|
working-directory: yellowstone-grpc-client-nodejs
|
|
|
|
- run: npm run build
|
|
working-directory: yellowstone-grpc-client-nodejs
|
|
|
|
- run: npm publish
|
|
working-directory: yellowstone-grpc-client-nodejs
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|