From 5678fb64699c6dafe8baac1f842525c7c682128c Mon Sep 17 00:00:00 2001 From: Bart van der Braak Date: Sun, 25 Feb 2024 23:45:27 +0100 Subject: [PATCH] fix: unzip and change dest path --- .github/workflows/release.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fa511bb..74376a0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -160,14 +160,16 @@ jobs: - uses: actions/download-artifact@v4 with: pattern: dist-* - merge-multiple: true - path: dist + merge-multiple: true - - name: Checksums with SHA512 and SHA256 + - name: Unzip artifacts + run: | + unzip dist-*.zip + + - name: Unzip and Checksums with SHA512 and SHA256 run: | sha512sum keyweave-* | tee SHA512SUMS sha256sum keyweave-* | tee SHA256SUMS - tree - uses: softprops/action-gh-release@v1 env: @@ -177,7 +179,7 @@ jobs: fail_on_unmatched_files: true files: | keyweave-*.tar.xz - keyweave-*/keyweave.exe + keyweave-*.exe *SUMS* - name: Generate SHA256SUM input for Homebrew