From 4a3e3b90dcd0e6bd39151ca18a3318ed96575d95 Mon Sep 17 00:00:00 2001 From: Michael Fabian 'Xaymar' Dirks Date: Thu, 29 Feb 2024 12:25:53 +0100 Subject: [PATCH] Also check out submodules recursivel --- .github/workflows/cmake-single-platform.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cmake-single-platform.yml b/.github/workflows/cmake-single-platform.yml index 0c5d363..fb1b56e 100644 --- a/.github/workflows/cmake-single-platform.yml +++ b/.github/workflows/cmake-single-platform.yml @@ -27,7 +27,9 @@ jobs: steps: - uses: actions/checkout@v4 with: - fetch-depth: 20 + submodules: recursive + fetch-depth: 0 + fetch-tags: true - name: Configure CMake run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} @@ -68,7 +70,7 @@ jobs: dateName=$(date +'%Y-%m-%d %H:%M:%S') echo "name=\"Hellextractor v${VERSION}\"" >> $GITHUB_OUTPUT - commitMessages=$(git log -20 --pretty=format:"%h - %s
" | paste -sd ' ' -) + commitMessages=$(git log -25 --pretty=format:"%h - %s
" | paste -sd ' ' -) echo "commitMessages=$commitMessages" # for debugging releaseNotes="Recent changes:
$commitMessages" echo "notes=$releaseNotes" >> $GITHUB_OUTPUT