From 6fecb0bf6c216e3845fa70a1784bdcb2bec5c16a Mon Sep 17 00:00:00 2001 From: Julian Graham Date: Wed, 13 Mar 2024 12:34:23 -0400 Subject: [PATCH] fix: Check out deeper commit history in CI deploy to support set-release --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 10e1249..d9c4144 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,6 +42,9 @@ jobs: NODE_ENV: production steps: - uses: actions/checkout@v3 + with: + fetch-depth: 500 # Needed for env:set-release + fetch-tags: true - uses: actions/setup-node@v3 with: node-version: 10