From 3b5f8577eeac117a3e995bb52daaf4b7337caa8d Mon Sep 17 00:00:00 2001 From: Jyasveer Gotta Date: Fri, 31 Aug 2018 16:14:40 +0530 Subject: [PATCH] fix(publish): use the correct upload url --- cico_release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cico_release.sh b/cico_release.sh index 9061c24d..346442f4 100755 --- a/cico_release.sh +++ b/cico_release.sh @@ -35,5 +35,5 @@ function publish_tar() { echo $upload_url # upload the tar file to the latest release id - curl -X POST -H "Content-Type: application/tar" -u $(npm whoami):$GH_TOKEN "https://$upload_url/repos/fabric8-analytics/fabric8-analytics-lsp-server/releases/$release_id/assets?name=ca-lsp-server.tar,label=LSP Server Tar File" + curl -X POST -H "Content-Type: application/tar" -u $(npm whoami):$GH_TOKEN "https://uploads.github.com/repos/fabric8-analytics/fabric8-analytics-lsp-server/releases/$release_id/assets?name=ca-lsp-server.tar,label=LSP Server Tar File" }