From e458937c95604dea082645940005f272ec8ca6a0 Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Thu, 27 Sep 2018 14:52:48 -0400 Subject: [PATCH] aws-test: Fix JSON filename passed to aws Minor regression from #312. We no longer copy this file in `/srv` now, we upload it directly from our workspace. --- Jenkinsfile.aws-test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile.aws-test b/Jenkinsfile.aws-test index 6dc2beaa..9e03678f 100644 --- a/Jenkinsfile.aws-test +++ b/Jenkinsfile.aws-test @@ -69,7 +69,7 @@ node(NODE) { # Upload the json file to a public location aws s3 cp --acl public-read \ - ${WORKSPACE}/aws-${AWS_REGION}-tested.json \ + ${WORKSPACE}/aws-${AWS_REGION}.json \ s3://${S3_PUBLIC_BUCKET}/aws-${AWS_REGION}-tested.json """ }