Pass node version when calling upload-checksums.

This commit is contained in:
Cheng Zhao 2014-07-24 23:34:50 +08:00
parent 8fcd39f621
commit 6c866ea909

View file

@ -48,18 +48,20 @@ def main():
release_id = create_or_get_release_draft(github, args.version) release_id = create_or_get_release_draft(github, args.version)
upload_atom_shell(github, release_id, os.path.join(DIST_DIR, DIST_NAME)) upload_atom_shell(github, release_id, os.path.join(DIST_DIR, DIST_NAME))
upload_atom_shell(github, release_id, os.path.join(DIST_DIR, SYMBOLS_NAME)) upload_atom_shell(github, release_id, os.path.join(DIST_DIR, SYMBOLS_NAME))
if args.publish_release:
# Upload the SHASUMS.txt.
execute([sys.executable,
os.path.join(SOURCE_ROOT, 'script', 'upload-checksums.py')])
# Press the publish button.
publish_release(github, release_id)
# Upload node's headers to S3. # Upload node's headers to S3.
bucket, access_key, secret_key = s3_config() bucket, access_key, secret_key = s3_config()
upload_node(bucket, access_key, secret_key, NODE_VERSION) upload_node(bucket, access_key, secret_key, NODE_VERSION)
if args.publish_release:
# Press the publish button.
publish_release(github, release_id)
# Upload the SHASUMS.txt.
execute([sys.executable,
os.path.join(SOURCE_ROOT, 'script', 'upload-checksums.py'),
'-v', NODE_VERSION])
def parse_args(): def parse_args():
parser = argparse.ArgumentParser(description='upload distribution file') parser = argparse.ArgumentParser(description='upload distribution file')