From c4ea9f7165f169e7b2594be7a2d38f768d922933 Mon Sep 17 00:00:00 2001 From: Priceless-P Date: Wed, 12 Mar 2025 14:48:04 +0100 Subject: [PATCH] add checksum --- .github/workflows/build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9394cf11..1443ea2a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -123,6 +123,10 @@ jobs: name: windows-artifact path: . + - name: Generate Checksum + run: + sha256sum demand-cli-linux demand-cli-macos demand-cli-windows.exe > checksums.sha256 + - name: Create GitHub Release and Upload Binaries uses: softprops/action-gh-release@v1 with: @@ -131,5 +135,6 @@ jobs: demand-cli-linux demand-cli-macos demand-cli-windows.exe + checksums.txt env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}