From 5e7b477f027fc35258c3c162736fd8a7fcacc9ea Mon Sep 17 00:00:00 2001 From: Andrew Branch Date: Thu, 5 Mar 2020 16:56:52 -0800 Subject: [PATCH] Skip git tag because GitHub release does that --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index cc008093..baf54534 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -28,7 +28,7 @@ jobs: run: | ref=${{ github.ref }} # refs/tags/v0.0.1 tag=${ref:10} # v0.0.1 - npx lerna version $tag --yes + npx lerna version $tag --yes --no-git-tag-version - name: publish run: npx lerna publish from-git --yes env: