From ac68072ec8e9b6489e408f45aac609b2216fb717 Mon Sep 17 00:00:00 2001 From: Yeon Vinzenz Varapragasam Date: Tue, 17 Nov 2020 03:27:53 +0100 Subject: [PATCH] v0.1.4d --- .github/workflows/release.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index def88e3..c8e5c69 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -15,9 +15,7 @@ jobs: uses: actions/checkout@v2 - name: Get commit-messages id: get_messages - run: | - git log --pretty=format:"%s" $(git describe --tags --abbrev=0 @^)..@ >> /tmp/messages.txt; cat /tmp/messages.txt >> $description - echo "::set-output name=description::$description" + run: echo "MESSAGES=$(git log --pretty=format:"%s" $(git describe --tags --abbrev=0 @^)..@ )" >> $GITHUB_ENV - name: Create Release id: create_release uses: actions/create-release@v1 @@ -27,6 +25,6 @@ jobs: tag_name: ${{ github.event.head_commit.message }} release_name: ${{ github.event.head_commit.message }} body: | - ${{ steps.get_messages.outputs.description }} + ${{ env.MESSAGES }} draft: false prerelease: false