From 96c02e85b3e9e1c83e1c87cc3e2f928e7a35a3d0 Mon Sep 17 00:00:00 2001 From: Maschell Date: Thu, 5 Jan 2023 17:27:59 +0100 Subject: [PATCH] Improve commit messages for nightlies --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9c06067..1898d9d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,6 +35,7 @@ jobs: run: | echo REPOSITORY_NAME=$(echo "$GITHUB_REPOSITORY" | awk -F / '{print $2}' | sed -e "s/:refs//") >> $GITHUB_ENV echo DATETIME=$(echo $(date '+%Y%m%d-%H%M%S')) >> $GITHUB_ENV + echo COMMIT_MESSAGES=$(echo "${{join(github.event.commits.*.message, '||END||') }}" | sed -e 's/||END||/\r\n/g') >> $GITHUB_ENV - uses: actions/download-artifact@master with: name: binary @@ -52,7 +53,7 @@ jobs: prerelease: true body: | Not a stable release: - ${{ github.event.head_commit.message }} + ${{ env.COMMIT_MESSAGES }} - name: Upload Release Asset id: upload-release-asset uses: actions/upload-release-asset@v1