From 8a93f4382dfbfaf5ce043a36395ba411d75194d2 Mon Sep 17 00:00:00 2001 From: Vlad-Stefan Harbuz Date: Thu, 24 Oct 2024 21:13:48 +0100 Subject: [PATCH] workflows: checkout with fetch_depth: 0 for deploy Why do we need this now? This worked fine before. Did we change something? Did GitHub change something? --- .github/workflows/deploy.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 5b48027a..d79d7abf 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -17,6 +17,8 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Run npm install run: npm install - name: Update new member files