From bbffaa6a6e2413fe91d85e7bdbd73edb91effca5 Mon Sep 17 00:00:00 2001 From: 9FS Date: Wed, 18 Sep 2024 20:01:21 +0000 Subject: [PATCH] :) --- .github/workflows/on tag deploy on github.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/on tag deploy on github.yaml b/.github/workflows/on tag deploy on github.yaml index 39950e0..4c29eaa 100644 --- a/.github/workflows/on tag deploy on github.yaml +++ b/.github/workflows/on tag deploy on github.yaml @@ -82,10 +82,13 @@ jobs: runs-on: "ubuntu-latest" steps: + - name: "Checkout Repository" + uses: "actions/checkout@v4" # makes repository structure available + - name: "Generate Changelog" id: "generate_changelog" run: | - commit_messages=$(git log --pretty=format:"- %cd (%h): %s" ${{needs.initialisation.outputs.TAG_PREVIOUS}}..${{needs.initialisation.outputs.TAG}}) + commit_messages=$(git log --pretty=format:"- %cI (%h): %s" "${{needs.initialisation.outputs.TAG_PREVIOUS}}".."${{needs.initialisation.outputs.TAG}}") echo "changelog=# Changelog\n\n$commit_messages" >> $GITHUB_OUTPUT - name: "Create Release"