From 3817642dd8c3286095db937336f225bc7f41f392 Mon Sep 17 00:00:00 2001 From: Dmitri Bogomolov <4glitch@gmail.com> Date: Tue, 25 Jan 2022 18:42:13 +0200 Subject: [PATCH] Format release body --- .github/workflows/appimage.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/appimage.yml b/.github/workflows/appimage.yml index cf749011..0d9e02d5 100644 --- a/.github/workflows/appimage.yml +++ b/.github/workflows/appimage.yml @@ -46,6 +46,8 @@ jobs: run: | sha256sum ${{ steps.deb.outputs.asset_path }} >> checksum.txt sha256sum ${{ steps.appimage.outputs.asset_path }} >> checksum.txt + cut -d '/' -f 2 checksum.txt >> body.txt + cut -d ' ' -f 1 checksum.txt >> body.txt - name: Release Continuous if: ${{ github.ref == 'refs/heads/ci' }} uses: softprops/action-gh-release@master @@ -53,7 +55,8 @@ jobs: prerelease: true tag_name: continuous target_commitish: ${{ github.sha }} - body_path: checksum.txt + body_path: body.txt + append_body: true files: | ${{ steps.deb.outputs.asset_path }} ${{ steps.appimage.outputs.asset_path }}