From 83c659369f97f25aebe2470f3a10c0ae3673ea8d Mon Sep 17 00:00:00 2001 From: Maschell Date: Mon, 3 Oct 2022 22:06:02 +0200 Subject: [PATCH] Improve commit messages in nightly releases --- .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 e8827b8..87ffbdc 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