Skip to content

v4.0.0-v4-Carbon11.50 #1873

v4.0.0-v4-Carbon11.50

v4.0.0-v4-Carbon11.50 #1873

Workflow file for this run

name: Publish
on:
push:
branches:
- master
- next
- v4-Carbon11
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.CARBON_BOT_TOKEN }}
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- name: Cache dependencies
uses: actions/cache@v4
with:
path: |
node_modules
*/*/node_modules
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
run: |
yarn --frozen-lockfile
yarn lerna run --stream postinstall
yarn lerna link
- name: Build
run: yarn build
- name: Publish
env:
GH_TOKEN: ${{ secrets.CARBON_BOT_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: yarn publish-npm