From 6427dcda0a87601f24874dbe5187c433c5a29096 Mon Sep 17 00:00:00 2001 From: Joe Bryan Date: Fri, 30 Jun 2023 13:45:15 -0400 Subject: [PATCH] ci: fix error check in version upload --- .github/workflows/shared.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/shared.yml b/.github/workflows/shared.yml index 30a8b2ca0b..eec7f3fec9 100644 --- a/.github/workflows/shared.yml +++ b/.github/workflows/shared.yml @@ -241,6 +241,7 @@ jobs: # We don't use -n here because we want to overwrite the version # string. gsutil cp ./bazel-bin/version "$target" + exitcode=$? [ $exitcode -eq 0 ] && echo "Upload to $target completed successfully." ||