From c816e604414ff0c548924ab91a29bdec9d311a86 Mon Sep 17 00:00:00 2001 From: Bobby Brennan Date: Wed, 10 Jul 2019 12:44:26 -0400 Subject: [PATCH] Rename org in GitHub API call (#160) --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 908b76dbb..a3c6e2b05 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -106,7 +106,7 @@ references: run: name: Release deploy configs command: | - upload_url=$(curl --silent https://api.github.com/repos/reactiveops/polaris/releases/latest | grep upload_url) + upload_url=$(curl --silent https://api.github.com/repos/FairwindsOps/polaris/releases/latest | grep upload_url) upload_url=$(echo $upload_url | sed -e 's/.*\(https.*\){.*$/\1/') curl -X POST "$upload_url?name=dashboard.yaml" --data-binary "@./deploy/dashboard.yaml" -H "Authorization: Bearer $GITHUB_TOKEN" -H "Content-Type: application/x-yaml" curl -X POST "$upload_url?name=webhook.yaml" --data-binary "@./deploy/webhook.yaml" -H "Authorization: Bearer $GITHUB_TOKEN" -H "Content-Type: application/x-yaml"