From d8b7779ab8713cd416e654a7e1590423f2fa3c60 Mon Sep 17 00:00:00 2001 From: Grant Linville Date: Wed, 16 Oct 2024 11:20:31 -0400 Subject: [PATCH] fix: checksums generation in release workflow (#6) Signed-off-by: Grant Linville --- .github/workflows/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 9fe2f29..d5a9883 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -66,8 +66,8 @@ jobs: uses: actions/download-artifact@v4 - run: ls -lR - run: | - sha256sum -b credential*/* > checksums.txt - sha256sum -c --strict checksums.txt + (cd credential && sha256sum -b *) > checksums.txt + (cd credential-windows && sha256sum -b *) >> checksums.txt - name: Create Release uses: ncipollo/release-action@v1 with: