Skip to content

Merge pull request #29 from cashfree/3.0.8 #25

Merge pull request #29 from cashfree/3.0.8

Merge pull request #29 from cashfree/3.0.8 #25

Workflow file for this run

# 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 to npm repository
on:
push:
branches:
- main
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: npm cache clean --force && npm install
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.TOKEN_GITHUB }}