From 29e4a1109a8d2a70eec9beda873fde2f4cac5a5b Mon Sep 17 00:00:00 2001 From: Evan You Date: Wed, 7 Aug 2024 22:31:31 +0800 Subject: [PATCH] workflow: force fetch all tags in release action --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fcf0c3fac51..350245d3b45 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -43,6 +43,7 @@ jobs: uses: actions/checkout@v4 with: ref: ${{ inputs.branch }} + fetch-depth: 0 # need this to get tags for changelog generation - name: Install pnpm uses: pnpm/action-setup@v4