Skip to content

Design System Packages are being published to NPM #34

Design System Packages are being published to NPM

Design System Packages are being published to NPM #34

Workflow file for this run

name: Publish Package to NPM
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
with:
# pulls all commits (needed for lerna / semantic release to correctly version)
fetch-depth: "0"
# pulls all tags (needed for lerna / semantic release to correctly version)
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- uses: actions/setup-node@v4
with:
# downloads latest LTS version
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
# build packages before publishing
- run: npm run build-all
- name: Publish to npm
run: npx lerna publish from-package --yes
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}