From 1952ced7c231d74ee9bcf4677712cc5048e6661a Mon Sep 17 00:00:00 2001 From: Alan Norton Date: Fri, 4 Feb 2022 07:47:51 -0500 Subject: [PATCH] output release checksums for homebrew --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1b5c04b..7d3c6ef 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,7 +3,7 @@ name: release on: push: tags: - - 'v*' + - "v*" jobs: release: @@ -27,6 +27,8 @@ jobs: env: RELEASE: ${{ steps.get_version.outputs.RELEASE_VERSION }} + - run: openssl dgst -sha256 pkg/* + - uses: ncipollo/release-action@v1 with: token: ${{ secrets.GITHUB_TOKEN }}