mirror of
https://github.com/denoland/deno.git
synced 2024-11-13 16:26:08 -05:00
3059558d41
Also rename the "test" CI worker to "test_release"
13 lines
377 B
Python
Executable file
13 lines
377 B
Python
Executable file
#!/usr/bin/env python
|
|
# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
import os
|
|
import sys
|
|
from util import run, root_path
|
|
|
|
os.chdir(root_path)
|
|
run([sys.executable, "tools/docs.py"])
|
|
os.chdir("target")
|
|
run([
|
|
"aws", "s3", "sync", "--include=typedoc", "--exclude=debug/*",
|
|
"--exclude=package/*", "--exclude=release/*", ".", "s3://deno.land/"
|
|
])
|