Skip to content

Commit cd158f9

Browse files
committed
fix(release): verify source checksum from artifact root
1 parent 1d68e2d commit cd158f9

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/source-release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ jobs:
3939
run: |
4040
mkdir -p artifacts/source
4141
./scripts/create-public-source-snapshot.sh "artifacts/source/HitTheKit-source-$RELEASE_VERSION.tar.gz"
42-
sha256sum "artifacts/source/HitTheKit-source-$RELEASE_VERSION.tar.gz" > artifacts/source/SHA256SUMS
42+
cd artifacts/source
43+
sha256sum "HitTheKit-source-$RELEASE_VERSION.tar.gz" > SHA256SUMS
4344
- name: Verify source snapshot checksum
4445
working-directory: artifacts/source
4546
run: sha256sum --check SHA256SUMS

0 commit comments

Comments
 (0)