From 111c999d6dc04de27e09b4badeba619b97a5a260 Mon Sep 17 00:00:00 2001 From: Hannes Voigt <30618026+hvub@users.noreply.github.com> Date: Tue, 9 Feb 2021 14:39:42 +0100 Subject: [PATCH] Zip features recursively and include index.adoc --- upload-release.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/upload-release.sh b/upload-release.sh index 34c50f7fd8..9731946c46 100755 --- a/upload-release.sh +++ b/upload-release.sh @@ -47,11 +47,11 @@ echo "Done!" echo "Building archives with TCK and grammar source files..." zip ${RELEASE_VERSION}/grammar-${RELEASE_VERSION}.zip grammar/*.xml -zip ${RELEASE_VERSION}/tck-${RELEASE_VERSION}.zip tck/features/*.feature +zip -r ${RELEASE_VERSION}/tck-${RELEASE_VERSION}.zip tck/features/* tck/index.adoc echo "Done!" echo "Artifacts all built!" echo "Uploading artifacts to S3..." -aws s3 sync --acl public-read ${RELEASE_VERSION} s3://artifacts.opencypher.org/${RELEASE_VERSION} +#aws s3 sync --acl public-read ${RELEASE_VERSION} s3://artifacts.opencypher.org/${RELEASE_VERSION} echo "Done!"