Skip to content

Update README.md

Update README.md #8

# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
name: Publish Cashfree node Js package in dev channel.
on:
push:
branches:
- dev/*
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '20.*'
registry-url: 'https://registry.npmjs.org'
- run: cd /home/runner/work/cashfree-pg-sdk-nodejs && ls && cd cashfree-pg-sdk-nodejs && ls
- run: npm install
- run: npm publish --tag dev --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.TOKEN_GITHUB }}