diff --git a/Gopkg.lock b/Gopkg.lock index 2bf4e69ac8a..01e940952d4 100644 --- a/Gopkg.lock +++ b/Gopkg.lock @@ -413,14 +413,14 @@ [[projects]] branch = "master" - digest = "1:1c736297f236da8d0639e3a7eacffb8403ae6bbc3f13ff83f0cfb5e534923ca2" + digest = "1:b1ddfad908ceb161ca5e28bb24300b5f80834da688317cfb55ab649919eb0dea" name = "github.com/knative/test-infra" packages = [ "scripts", "tools/dep-collector", ] pruneopts = "UT" - revision = "33a3ccab34f3b19ca95b54d40a0a94fd8919f9e8" + revision = "e15222dc039e4fe569a35f9a068b54ba2da9bfd2" [[projects]] digest = "1:56dbf15e091bf7926cb33a57cb6bdfc658fc6d3498d2f76f10a97ce7856f1fde" diff --git a/vendor/github.com/knative/test-infra/scripts/release.sh b/vendor/github.com/knative/test-infra/scripts/release.sh index fb4731c07ce..c7b0204b269 100755 --- a/vendor/github.com/knative/test-infra/scripts/release.sh +++ b/vendor/github.com/knative/test-infra/scripts/release.sh @@ -391,6 +391,7 @@ function main() { echo "New release built successfully" if (( PUBLISH_RELEASE )); then tag_images_in_yamls ${YAMLS_TO_PUBLISH} + publish_yamls ${YAMLS_TO_PUBLISH} publish_to_github ${YAMLS_TO_PUBLISH} echo "New release published successfully" fi @@ -400,7 +401,7 @@ function main() { # Parameters: $1..$n - YAML files to add to the release. function publish_to_github() { (( PUBLISH_TO_GITHUB )) || return 0 - local title="Knative $(capitalize ${REPO_NAME//-/ /}) release ${TAG}" + local title="Knative $(capitalize ${REPO_NAME//-/ }) release ${TAG}" local attachments=() local description="$(mktemp)" local attachments_dir="$(mktemp -d)"