From a290b01e219f897f2731f8b52fe18513cb216521 Mon Sep 17 00:00:00 2001 From: harry Date: Sun, 15 Oct 2023 11:29:30 +0100 Subject: [PATCH] fix(release): add fetch depth 0 fetch depth 0 allows all commits to be fetched so that the ci job can generate the release notes correctly --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8534f54..5c2bb7f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,6 +10,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 + with: + fetch-depth: 0 - name: Install pnpm uses: pnpm/action-setup@v2