Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
joaquincasares committed Jul 26, 2022
1 parent 0854873 commit a6ed31a
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .circleci/bin/deploy-sdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import json
from os import getenv

import click
import requests


Expand All @@ -12,12 +13,7 @@ def cli(git_tag):
org = "AudiusProject"
repo = "audius-project"
branch = "master"
data = {
"branch": branch,
"parameters": {
"sdk_release_tag": git_tag
}
}
data = {"branch": branch, "parameters": {"sdk_release_tag": git_tag}}
r = requests.post(
f"https://circleci.com/api/v2/project/github/{org}/{repo}/pipeline",
headers={"Content-Type": "application/json"},
Expand Down

0 comments on commit a6ed31a

Please sign in to comment.