Upload index.json when publishing release
This commit is contained in:
parent
6b1f2215b2
commit
aa835ad38a
4 changed files with 35 additions and 10 deletions
31
script/upload-index-json.py
Executable file
31
script/upload-index-json.py
Executable file
|
@ -0,0 +1,31 @@
|
||||||
|
#!/usr/bin/env python
|
||||||
|
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
|
||||||
|
from lib.config import PLATFORM
|
||||||
|
from lib.util import execute, s3_config, s3put, scoped_cwd
|
||||||
|
|
||||||
|
|
||||||
|
SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
|
||||||
|
OUT_DIR = os.path.join(SOURCE_ROOT, 'out', 'R')
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
# Upload the index.json.
|
||||||
|
with scoped_cwd(SOURCE_ROOT):
|
||||||
|
atom_shell = os.path.join(OUT_DIR, 'atom')
|
||||||
|
if PLATFORM == 'win32':
|
||||||
|
atom_shell += '.exe'
|
||||||
|
index_json = os.path.relpath(os.path.join(OUT_DIR, 'index.json'))
|
||||||
|
execute([atom_shell,
|
||||||
|
os.path.join('tools', 'dump-version-info.js'),
|
||||||
|
index_json])
|
||||||
|
|
||||||
|
bucket, access_key, secret_key = s3_config()
|
||||||
|
s3put(bucket, access_key, secret_key, OUT_DIR, 'atom-shell/dist',
|
||||||
|
[index_json])
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
sys.exit(main())
|
|
@ -119,16 +119,6 @@ def upload_node(bucket, access_key, secret_key, version):
|
||||||
s3put(bucket, access_key, secret_key, DIST_DIR,
|
s3put(bucket, access_key, secret_key, DIST_DIR,
|
||||||
'atom-shell/dist/{0}'.format(version), [node_lib])
|
'atom-shell/dist/{0}'.format(version), [node_lib])
|
||||||
|
|
||||||
# Upload the index.json.
|
|
||||||
with scoped_cwd(SOURCE_ROOT):
|
|
||||||
atom_shell = os.path.join(OUT_DIR, 'atom.exe')
|
|
||||||
index_json = os.path.relpath(os.path.join(OUT_DIR, 'index.json'))
|
|
||||||
execute([atom_shell,
|
|
||||||
os.path.join('script', 'dump-version-info.js'),
|
|
||||||
index_json])
|
|
||||||
s3put(bucket, access_key, secret_key, OUT_DIR, 'atom-shell/dist',
|
|
||||||
[index_json])
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
sys.exit(main())
|
sys.exit(main())
|
||||||
|
|
|
@ -55,6 +55,10 @@ def main():
|
||||||
os.path.join(SOURCE_ROOT, 'script', 'upload-checksums.py'),
|
os.path.join(SOURCE_ROOT, 'script', 'upload-checksums.py'),
|
||||||
'-v', ATOM_SHELL_VERSION])
|
'-v', ATOM_SHELL_VERSION])
|
||||||
|
|
||||||
|
# Upload the index.json.
|
||||||
|
execute([sys.executable,
|
||||||
|
os.path.join(SOURCE_ROOT, 'script', 'upload-index-json.py')])
|
||||||
|
|
||||||
# Press the publish button.
|
# Press the publish button.
|
||||||
publish_release(github, release_id)
|
publish_release(github, release_id)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue