Skip to content

chore(release): publish #59

chore(release): publish

chore(release): publish #59

Workflow file for this run

name: Publish Package to npmjs
on:
push:
branches:
- 'release/**'
permissions:
contents: write
pull-requests: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Configure CI Git User
run: |
git config --global user.name '@jpmorganchase'
git config --global user.email 'jpmorganchase@users.noreply.github.com'
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v3
with:
registry-url: 'https://registry.npmjs.org'
scope: '@jpmorganchase'
- name: Version and deploy
run: |
yarn install --frozen-lockfile
yarn run version
yarn run release
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_JPMC_PUBLISHER }}