Skip to content

Merge pull request #8 from som30ind/develop #3

Merge pull request #8 from som30ind/develop

Merge pull request #8 from som30ind/develop #3

Workflow file for this run

name: Build and Publish Package
on:
push:
tags:
- v1*
jobs:
build_and_publish:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Build package
run: npm run compile
- name: Publish package to NPM
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
echo "//registry.npmjs.org/:_authToken=\${NODE_AUTH_TOKEN}" > .npmrc
npm publish --access=public