Ignore SSL certs
This commit is contained in:
parent
5788beed1c
commit
0bc0b8d4bf
1 changed files with 1 additions and 1 deletions
|
|
@ -28,5 +28,5 @@ upload_url = upload_url + '?name=' + release_name
|
||||||
|
|
||||||
upload_headers = {'Authorization': 'token ' + token}
|
upload_headers = {'Authorization': 'token ' + token}
|
||||||
files = {'file': (release_name, open(release_name, 'rb'), 'application/zip')}
|
files = {'file': (release_name, open(release_name, 'rb'), 'application/zip')}
|
||||||
r = requests.post(upload_url, files=files, headers = upload_headers)
|
r = requests.post(upload_url, files=files, headers = upload_headers, verify=False)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue