Skip to content

Commit 294c94b

Browse files
committed
We should sha the tarball, not the unpacked files
1 parent 2ed2f8e commit 294c94b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ jobs:
5555
run: |
5656
cd target/${{ matrix.target }}/release
5757
if [[ "${{ matrix.os }}" == "macos-latest" ]]; then
58-
shasum -a 256 minos-codex* > ../../../minos-codex-${{ matrix.target }}-${{ matrix.os }}.sha256
58+
shasum -a 256 ../../../minos-codex-${{ matrix.target }}-${{ matrix.os }}.tar.gz > ../../../minos-codex-${{ matrix.target }}-${{ matrix.os }}.sha256
5959
else
60-
sha256sum minos-codex* > ../../../minos-codex-${{ matrix.target }}-${{ matrix.os }}.sha256
60+
sha256sum ../../../minos-codex-${{ matrix.target }}-${{ matrix.os }}.tar.gz > ../../../minos-codex-${{ matrix.target }}-${{ matrix.os }}.sha256
6161
fi
6262
cd -
6363

0 commit comments

Comments
 (0)