Skip to content

#added Whatsapp Business Phone number ID (You can use it check if its… #9

#added Whatsapp Business Phone number ID (You can use it check if its…

#added Whatsapp Business Phone number ID (You can use it check if its… #9

Workflow file for this run

name: npm publish
on:
push:
branches:
- release
tags:
- v*
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Setup node ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: npm publish
run: |
npm ci
npm run build
npm config set //registry.npmjs.org/:_authToken=${{ secrets.NPM_AUTH_TOKEN }}
npm publish --access public
env:
CI: true