Skip to content

feat: upgrade the clevertap web sdk to 2.3.0 (#190) #85

feat: upgrade the clevertap web sdk to 2.3.0 (#190)

feat: upgrade the clevertap web sdk to 2.3.0 (#190) #85

Workflow file for this run

name: Release
on:
push:
branches:
- master
- develop
jobs:
publish-npm:
name: Release
runs-on: ubuntu-latest
environment: master
steps:
- name: Checkout
uses: actions/checkout@v3
with:
persist-credentials: true
fetch-depth: 0
- name: Setup Git
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
- name: Lint & Test
uses: ./.github/actions/build
- name: Release
run: npx semantic-release
env:
NPM_TOKEN: ${{secrets.npm_token}}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}