From d9810982add58edaf358dab7d7a1f53be3bc5802 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Sat, 9 Aug 2025 11:10:46 +0200 Subject: [PATCH] git: Don't pull all submodules --- .github/workflows/nightly_release.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/nightly_release.yml b/.github/workflows/nightly_release.yml index def01bb64..69bd9e450 100644 --- a/.github/workflows/nightly_release.yml +++ b/.github/workflows/nightly_release.yml @@ -18,7 +18,6 @@ jobs: uses: actions/checkout@v4 with: path: ImHex - submodules: recursive - name: 📜 Set version variable run: | @@ -62,8 +61,8 @@ jobs: continue-on-error: true run: | cd ImHex - echo "## Nightly Changelog" > changelog.md - git fetch --tags + echo "## Nightly ${GITHUB_SHA::7} Changelog" > changelog.md + git fetch --tags --recurse-submodules=no git log tags/nightly..HEAD --oneline --no-merges --pretty=format:'* %s' >> changelog.md - name: 📦 Update Pre-Release