aboutsummaryrefslogtreecommitdiffstats
path: root/tasks.py
diff options
context:
space:
mode:
Diffstat (limited to 'tasks.py')
-rw-r--r--tasks.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/tasks.py b/tasks.py
index 242f2536..c205ac88 100644
--- a/tasks.py
+++ b/tasks.py
@@ -21,7 +21,7 @@ import invoke
import requests
-JENKINS_URL = "http://jenkins.cryptography.io/job/cryptography-wheel-builder"
+JENKINS_URL = "https://jenkins.cryptography.io/job/cryptography-wheel-builder"
def wait_for_build_completed():
@@ -84,7 +84,12 @@ def release(version):
invoke.run("git push --tags")
invoke.run("python setup.py sdist")
- invoke.run("twine upload -s dist/cryptography-{0}*".format(version))
+ invoke.run("cd vectors/ && python setup.py sdist bdist_wheel")
+
+ invoke.run(
+ "twine upload -s dist/cryptography-{0}* "
+ "vectors/dist/cryptography_vectors-{0}*".format(version)
+ )
token = getpass.getpass("Input the Jenkins token: ")
response = requests.post(