diff --git a/.github/workflows/publish-dev-channel.yml b/.github/workflows/publish-dev-channel.yml deleted file mode 100644 index 7980d03..0000000 --- a/.github/workflows/publish-dev-channel.yml +++ /dev/null @@ -1,26 +0,0 @@ -# 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 }}