From 6449ef61664a92f5aa2be41c25816a269ee1c5a6 Mon Sep 17 00:00:00 2001 From: Danilo Piparo Date: Fri, 20 Dec 2024 10:04:45 +0100 Subject: [PATCH] Do not wipe doc files and download directories --- .github/workflows/continuous-integration-workflow.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/continuous-integration-workflow.yml b/.github/workflows/continuous-integration-workflow.yml index 18abf26f..928d4288 100644 --- a/.github/workflows/continuous-integration-workflow.yml +++ b/.github/workflows/continuous-integration-workflow.yml @@ -72,7 +72,8 @@ jobs: run: | DEST="s3://root/${PR_NUMBER:-}" # if PR, upload in s3://root/ aws configure set default.s3.max_concurrent_requests 200 - aws --endpoint-url https://s3.cern.ch s3 sync --delete build/${PR_NUMBER:-} ${DEST} + aws --endpoint-url https://s3.cern.ch s3 sync --delete build/${PR_NUMBER:-} ${DEST} --exclude 'files-test/*' --exclude 'download-test/*' --exclude 'doc-test/*' + env: AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}