mirror of
https://github.com/bartvdbraak/keyweave.git
synced 2025-04-28 07:11:21 +00:00
fix: unzip and change dest path
This commit is contained in:
parent
dce912c324
commit
5678fb6469
1 changed files with 7 additions and 5 deletions
12
.github/workflows/release.yml
vendored
12
.github/workflows/release.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue