From e1e80ab78cef88fd1e800b07611581dce3142550 Mon Sep 17 00:00:00 2001 From: Nathan Rajlich Date: Tue, 30 May 2023 13:57:42 -0700 Subject: [PATCH] Fetch git tags --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6ce860e4..ec1ec9f3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,6 +15,9 @@ jobs: - name: Checkout Repo uses: actions/checkout@v3 + - name: Fetch git tags + run: git fetch origin 'refs/tags/*:refs/tags/*' + - name: Setup pnpm uses: pnpm/action-setup@v2 with: