mirror of
https://github.com/bartvdbraak/keyweave.git
synced 2025-04-29 07:41: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
|
- uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
pattern: dist-*
|
pattern: dist-*
|
||||||
merge-multiple: true
|
merge-multiple: true
|
||||||
path: dist
|
|
||||||
|
|
||||||
- name: Checksums with SHA512 and SHA256
|
- name: Unzip artifacts
|
||||||
|
run: |
|
||||||
|
unzip dist-*.zip
|
||||||
|
|
||||||
|
- name: Unzip and Checksums with SHA512 and SHA256
|
||||||
run: |
|
run: |
|
||||||
sha512sum keyweave-* | tee SHA512SUMS
|
sha512sum keyweave-* | tee SHA512SUMS
|
||||||
sha256sum keyweave-* | tee SHA256SUMS
|
sha256sum keyweave-* | tee SHA256SUMS
|
||||||
tree
|
|
||||||
|
|
||||||
- uses: softprops/action-gh-release@v1
|
- uses: softprops/action-gh-release@v1
|
||||||
env:
|
env:
|
||||||
|
@ -177,7 +179,7 @@ jobs:
|
||||||
fail_on_unmatched_files: true
|
fail_on_unmatched_files: true
|
||||||
files: |
|
files: |
|
||||||
keyweave-*.tar.xz
|
keyweave-*.tar.xz
|
||||||
keyweave-*/keyweave.exe
|
keyweave-*.exe
|
||||||
*SUMS*
|
*SUMS*
|
||||||
|
|
||||||
- name: Generate SHA256SUM input for Homebrew
|
- name: Generate SHA256SUM input for Homebrew
|
||||||
|
|
Loading…
Reference in a new issue