Skip to content

chore: add github workflow to publish packages to npm with lerna #1

chore: add github workflow to publish packages to npm with lerna

chore: add github workflow to publish packages to npm with lerna #1

Workflow file for this run

name: Publish Package to NPM

Check failure on line 1 in .github/workflows/publish-npm.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/publish-npm.yml

Invalid workflow file

`permissions` is not a valid event name
run-name: Design System Packages are being published to NPM
on:
workflow_dispatch:
push:
tags:
- '*'
permissions:
contents: write # for checkout
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
# downloads latest LTS version
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
# build packages before publishing
- run: npm run build-all
- name: Publish to npm
run: lerna publish from-package --yes
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}