Skip to content

updated yarn config #19

updated yarn config

updated yarn config #19

name: Generate packages and publish
on:
workflow_dispatch:
push:
branches:
- main
- release/*
permissions:
contents: write
id-token: write
jobs:
Build-packages:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Install
run: yarn
- name: Bump
run: yarn gitversion bump
- name: Build 🔧
run: yarn build:all
- name: Publish
run: yarn gitversion publish
env:
YARN_NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}