Skip to content

Commit

Permalink
Store full output of sha256sum in .sha256 files
Browse files Browse the repository at this point in the history
  • Loading branch information
WojciechMazur committed Oct 16, 2024
1 parent a053fba commit 29c23e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -799,8 +799,8 @@ jobs:
tar -czf "${artifactName}.tar.gz" -C "${tmpDir}" .
# Caluclate SHA for each of archive files
for file in "./${artifactName}.zip" "./${artifactName}.tar.gz"; do
sha256sum "${file}" | cut -d " " -f 1 > "${file}.sha256"
for file in "${artifactName}.zip" "${artifactName}.tar.gz"; do
sha256sum "${file}" > "${file}.sha256"
done
}
prepareSDK "" ${{needs.build-sdk-package.outputs.universal-id}}
Expand Down

0 comments on commit 29c23e2

Please sign in to comment.