Skip to content

chore(release): Publish #28

chore(release): Publish

chore(release): Publish #28

Workflow file for this run

name: Publish to npm
on:
push:
tags:
- "**"
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
ref: "main" # Replace with your branch name
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
- name: Install dependencies
run: yarn --immutable
- name: Build eslint-plugin
run: yarn workspace @bam.tech/eslint-plugin build
- name: Set up .npmrc file
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
- name: Publish to npm
run: npx lerna publish from-package --no-private --yes
env:
NPM_TOKEN: ${{secrets.NPM_TOKEN}}