Use upload-node-headers.py in upload.py
This commit is contained in:
parent
7df1957ac7
commit
c09ba6efdb
2 changed files with 6 additions and 3 deletions
|
@ -84,7 +84,6 @@ def main():
|
||||||
create_symbols()
|
create_symbols()
|
||||||
copy_binaries()
|
copy_binaries()
|
||||||
copy_chromedriver()
|
copy_chromedriver()
|
||||||
copy_headers()
|
|
||||||
copy_license()
|
copy_license()
|
||||||
|
|
||||||
if TARGET_PLATFORM == 'linux':
|
if TARGET_PLATFORM == 'linux':
|
||||||
|
|
|
@ -2,7 +2,6 @@
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
import errno
|
import errno
|
||||||
import glob
|
|
||||||
import os
|
import os
|
||||||
import subprocess
|
import subprocess
|
||||||
import sys
|
import sys
|
||||||
|
@ -59,11 +58,16 @@ def main():
|
||||||
os.path.join(DIST_DIR, CHROMEDRIVER_NAME))
|
os.path.join(DIST_DIR, CHROMEDRIVER_NAME))
|
||||||
|
|
||||||
if args.publish_release:
|
if args.publish_release:
|
||||||
# Upload PDBs to Windows symbol server.
|
|
||||||
if TARGET_PLATFORM == 'win32':
|
if TARGET_PLATFORM == 'win32':
|
||||||
|
# Upload PDBs to Windows symbol server.
|
||||||
execute([sys.executable,
|
execute([sys.executable,
|
||||||
os.path.join(SOURCE_ROOT, 'script', 'upload-windows-pdb.py')])
|
os.path.join(SOURCE_ROOT, 'script', 'upload-windows-pdb.py')])
|
||||||
|
|
||||||
|
# Upload node headers.
|
||||||
|
execute([sys.executable,
|
||||||
|
os.path.join(SOURCE_ROOT, 'script', 'upload-node-headers.py'),
|
||||||
|
'-v', ATOM_SHELL_VERSION])
|
||||||
|
|
||||||
# Press the publish button.
|
# Press the publish button.
|
||||||
publish_release(github, release_id)
|
publish_release(github, release_id)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue