We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d60268b + 6a3e1d6 commit 586d0aaCopy full SHA for 586d0aa
1 file changed
build.sh
@@ -23,10 +23,12 @@ for target in $targets; do
23
echo "----> Building project for: $target"
24
GOOS=$os GOARCH=$arch CGO_ENABLED=0 go build -o $output
25
26
- sha256sum $output |cut -d ' ' -f1 > $output-sha256sum.txt
27
-
28
zip -j $output.zip $output > /dev/null 2>&1
29
tar -czvf $output.tgz $output > /dev/null 2>&1
+
+ sha256sum $output |cut -d ' ' -f1 > $output-sha256sum.txt
30
+ sha256sum $output.zip |cut -d ' ' -f1 > $output-zip-sha256sum.txt
31
+ sha256sum $output.tgz |cut -d ' ' -f1 > $output-tgz-sha256sum.txt
32
done
33
34
echo "----> Build is complete. List of files at $release_path:"
0 commit comments