aboutsummaryrefslogtreecommitdiffstats
path: root/syz-ci
diff options
context:
space:
mode:
Diffstat (limited to 'syz-ci')
-rw-r--r--syz-ci/manager.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/syz-ci/manager.go b/syz-ci/manager.go
index 776ed2e84..ff646b5ff 100644
--- a/syz-ci/manager.go
+++ b/syz-ci/manager.go
@@ -1032,7 +1032,7 @@ func uploadFile(dstPath, name string, file io.Reader, publish bool) error {
strings.HasPrefix(URLStr, "https://") {
return uploadFileHTTPPut(URLStr, file)
}
- return gcs.UploadFile(context.Background(), file, URLStr, publish)
+ return gcs.UploadFile(context.Background(), file, URLStr, gcs.UploadOptions{Publish: publish})
}
func uploadFileHTTPPut(URL string, file io.Reader) error {