From 3ff6065c9d1ea7d19d2a38f2c380d77b659ed664 Mon Sep 17 00:00:00 2001 From: ibo <41344259+sneazy-ibo@users.noreply.github.com> Date: Thu, 20 Jun 2024 01:33:41 +0200 Subject: [PATCH] fix: set depth back to 0 --- .github/workflows/beta.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/beta.yml b/.github/workflows/beta.yml index a57e526e..eb7ae4e0 100644 --- a/.github/workflows/beta.yml +++ b/.github/workflows/beta.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest env: CI: true - SKIP_BUILD: true + SKIP_BUILD: false steps: - name: Checkout repo @@ -37,7 +37,7 @@ jobs: LAST_SHA=$(cat last_sha.txt) else # Fallback to first commit if no previous SHA available - LAST_SHA=$(git rev-list --max-parents=10 HEAD) + LAST_SHA=$(git rev-list --max-parents=0 HEAD) fi echo "Commits since $LAST_SHA:" # Accumulate commit logs in a shell variable