From 23c0b30a155ce7486ecf73130e7eab64dfd076e4 Mon Sep 17 00:00:00 2001 From: Kazunari Hara Date: Wed, 4 Nov 2020 11:13:45 +0900 Subject: [PATCH] chore: fix lerna command to publish --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7d16e45d0..df82ebf23 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -45,6 +45,6 @@ jobs: id: extract_version - name: Releaseing with lerna # also see some options in lerna.json - run: npx lerna release ${{ steps.extract_version.outputs.version }} --conventional-commits --create-release github --yes --no-private + run: npx lerna publish ${{ steps.extract_version.outputs.version }} --conventional-commits --create-release github --yes --no-private env: GH_TOKEN: ${{ github.token }}