Skip to content

Commit

Permalink
Merge pull request #5408 from koba1t/fix_add_checksum_create_step_in_…
Browse files Browse the repository at this point in the history
…release_scripts

fix add checksum create step in release scripts
  • Loading branch information
k8s-ci-robot authored Oct 27, 2023
2 parents 96ad106 + d6fa69d commit 48fd585
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion releasing/create-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,17 @@ function build_kustomize_binary {
fi
rm output/kustomize
done
rmdir output
done

# create checksums.txt
pushd "${release_dir}"
for release in *; do
echo "generate checksum: $release"
sha256sum "$release" >> checksums.txt
done
popd

rmdir output
}

function create_release {
Expand Down

0 comments on commit 48fd585

Please sign in to comment.