chore(release): publish #59
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |