Skip to content

Commit 29c23e2

Browse files
committed
Store full output of sha256sum in .sha256 files
1 parent a053fba commit 29c23e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -799,8 +799,8 @@ jobs:
799799
tar -czf "${artifactName}.tar.gz" -C "${tmpDir}" .
800800
801801
# Caluclate SHA for each of archive files
802-
for file in "./${artifactName}.zip" "./${artifactName}.tar.gz"; do
803-
sha256sum "${file}" | cut -d " " -f 1 > "${file}.sha256"
802+
for file in "${artifactName}.zip" "${artifactName}.tar.gz"; do
803+
sha256sum "${file}" > "${file}.sha256"
804804
done
805805
}
806806
prepareSDK "" ${{needs.build-sdk-package.outputs.universal-id}}

0 commit comments

Comments
 (0)