From ce67e050d31d719242318c68277dcf2d6c040687 Mon Sep 17 00:00:00 2001 From: Ilesh Thiada Date: Sun, 8 May 2022 12:30:07 +0530 Subject: [PATCH] Fix hashing and markdown header --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 932bb1a..6a66c15 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -99,10 +99,10 @@ jobs: name: binaries path: ./out - name: Create sha256sum for scoop - run: sha256sum ferium-windows-msvc.zip | cut -d ' ' -f 1 > ./out/ferium-windows-msvc.zip.sha256 + run: sha256sum ./out/ferium-windows-msvc.zip | cut -d ' ' -f 1 > ./out/ferium-windows-msvc.zip.sha256 # Remove the dots for the markdown header - name: MD Header - run: export MD_HEADER=$(echo ${{ github.ref_name }} | sed 's/\.//g') + run: echo "MD_HEADER=$(echo ${{ github.ref_name }} | sed 's/\.//g')" >> $GITHUB_ENV - name: Create release uses: softprops/action-gh-release@v1 with: