From 3ad962d842626658529828fe1a756956f5a13e7f Mon Sep 17 00:00:00 2001 From: David Worms Date: Fri, 6 Oct 2023 13:34:30 +0200 Subject: [PATCH] build(project): use lerna publish instead of yarn --- .github/workflows/node.js.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 2ea429d..290d881 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -55,9 +55,9 @@ jobs: fetch-depth: 0 - uses: actions/setup-node@v2 with: - node-version: '16.x' + node-version: '18.x' registry-url: 'https://registry.npmjs.org' - run: yarn install - - run: yarn run publish + - run: npx lerna publish from-git --yes env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}