From 0434e62fc71730ae2f54bc792240ffd93a12396a Mon Sep 17 00:00:00 2001 From: Black-Hole Date: Fri, 12 Jan 2024 15:37:05 +0800 Subject: [PATCH] fix(ci): sha256sum command not found (#29) Signed-off-by: Black-Hole1 --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c97016d..612c5b6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,7 +35,7 @@ jobs: - name: sha256sum working-directory: out - run: sha256sum * > ./SHA256SUM.txt + run: shasum -a 256 * > ./SHA256SUM.txt - name: Release uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # v0.1.15