We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a053fba commit 29c23e2Copy full SHA for 29c23e2
.github/workflows/ci.yaml
@@ -799,8 +799,8 @@ jobs:
799
tar -czf "${artifactName}.tar.gz" -C "${tmpDir}" .
800
801
# 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"
+ for file in "${artifactName}.zip" "${artifactName}.tar.gz"; do
+ sha256sum "${file}" > "${file}.sha256"
804
done
805
}
806
prepareSDK "" ${{needs.build-sdk-package.outputs.universal-id}}
0 commit comments