summaryrefslogtreecommitdiff
path: root/tools/upload_docs.py
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2020-01-24 14:24:27 -0500
committerGitHub <noreply@github.com>2020-01-24 14:24:27 -0500
commit3059558d41690bb0bc70abd65ac42577019a8072 (patch)
tree8c814e46a73f0ea54fdb5c26e886b487f137bab0 /tools/upload_docs.py
parent950537e8ef6e54c409a7fcafa0b087e68988d9ef (diff)
fix cargo-publish-on-tag (#3781)
Also rename the "test" CI worker to "test_release"
Diffstat (limited to 'tools/upload_docs.py')
-rwxr-xr-xtools/upload_docs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/upload_docs.py b/tools/upload_docs.py
index b37ab4e96..70605dd4a 100755
--- a/tools/upload_docs.py
+++ b/tools/upload_docs.py
@@ -9,5 +9,5 @@ run([sys.executable, "tools/docs.py"])
os.chdir("target")
run([
"aws", "s3", "sync", "--include=typedoc", "--exclude=debug/*",
- "--exclude=release/*", ".", "s3://deno.land/"
+ "--exclude=package/*", "--exclude=release/*", ".", "s3://deno.land/"
])