From ab1b834b1630bdfb99d344818922a47ed8c9adc5 Mon Sep 17 00:00:00 2001 From: Jacob Alheid Date: Fri, 17 Jun 2022 13:42:38 -0700 Subject: [PATCH] fix(release): use fetch-depth 0 --- .github/workflows/release.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index ee3c172..e2d3573 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -11,7 +11,9 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 - - name: Release + with: + fetch-depth: 0 + - name: Lint uses: ./lint release: needs: @@ -23,6 +25,7 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 + with: + fetch-depth: 0 - name: Release uses: ./release - id: release