Skip to content

Commit

Permalink
Fix checksum generation (#369)
Browse files Browse the repository at this point in the history
(cherry picked from commit a5f779c)
  • Loading branch information
vgrassia committed Nov 1, 2023
1 parent 159fe6e commit b2bc451
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:

- name: Create checksums
run: |
sha256sum dist-cli/bwdc-linux-$_PACKAGE_VERSION.zip | \
shasum -a 256 dist-cli/bwdc-linux-$_PACKAGE_VERSION.zip | \
cut -d " " -f 1 > dist-cli/bwdc-linux-sha256-$_PACKAGE_VERSION.txt
- name: Version Test
Expand Down Expand Up @@ -193,7 +193,7 @@ jobs:

- name: Create checksums
run: |
sha256sum dist-cli/bwdc-macos-$_PACKAGE_VERSION.zip | \
shasum -a 256 dist-cli/bwdc-macos-$_PACKAGE_VERSION.zip | \
cut -d " " -f 1 > dist-cli/bwdc-macos-sha256-$_PACKAGE_VERSION.txt
- name: Version Test
Expand Down

0 comments on commit b2bc451

Please sign in to comment.