From d81c4f9a35e072114eea061f1ff97e5a0dcc9318 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Tue, 11 Jan 2022 16:33:44 +0000 Subject: [PATCH] chore(build): fetch all history when building --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f15d3b7d80..e264482b44 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,6 +25,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 + with: + fetch-depth: 0 - uses: actions/setup-node@v2 with: node-version: 16 @@ -43,5 +45,5 @@ jobs: NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - name: Release run: | - HUSKY_SKIP_HOOKS=1 lerna publish $(echo "${{ github.event.inputs.version }}") --no-verify-access --yes --force-publish='*' --dist-tag $(echo "${{ github.event.inputs.tag }}") --no-git-tag-version --no-push --skip-npm + HUSKY_SKIP_HOOKS=1 lerna publish $(echo "${{ github.event.inputs.version }}") --no-verify-access --yes --force-publish='*' --dist-tag $(echo "${{ github.event.inputs.tag }}") --no-changelog --no-git-tag-version --no-push --skip-npm shell: bash