From 2b5937032cc53e4d79490024ed1b4a8f805cd0af Mon Sep 17 00:00:00 2001 From: philwo Date: Fri, 20 Apr 2018 04:49:20 -0700 Subject: Fix artifacts uploaded to GitHub as part of final releases. We accidentally removed the .deb file, even though it's supposed to be uploaded and we didn't remove the .sig/.sha256 files of the artifacts that are *not* supposed to be uploaded. This change fixes that. PiperOrigin-RevId: 193651950 --- scripts/ci/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/ci/build.sh b/scripts/ci/build.sh index a2e45130c7..6681a838d2 100755 --- a/scripts/ci/build.sh +++ b/scripts/ci/build.sh @@ -324,6 +324,6 @@ function deploy_release() { github_working_dir="$(mktemp -d --tmpdir)" echo "github_working_dir = ${github_working_dir}" cp "${artifact_dir}"/* "${github_working_dir}" - rm -f "${github_working_dir}/bazel_${release_label}"*.{deb,dsc,tar.gz} + rm -f "${github_working_dir}/bazel_${release_label}"*.{dsc,tar.gz}{,.sha256,.sig} release_to_github "${github_working_dir}" } -- cgit v1.2.3