Skip to content

Commit

Permalink
feat(callhistory): Added git publish to npm
Browse files Browse the repository at this point in the history
  • Loading branch information
imlaskar authored and arun3528 committed Apr 3, 2023
1 parent fa7d381 commit 22c46ee
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages

name: component-adapter-interfaces

on:
push:
branches:
- master

jobs:
semantic-release:
name: semantic-latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: yarn install

- run: yarn build
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit 22c46ee

Please sign in to comment.