@@ -33,7 +33,7 @@ void call(Map args = [:]) {
33
33
String pluginNameWithExt = pluginSubPath. split(' /' )[1 ]
34
34
String pluginName = pluginNameWithExt. replace(' -' + version + ' .zip' , ' ' )
35
35
String pluginFullPath = [' plugins' , pluginName, version]. join(' /' )
36
- s3Upload(bucket : " ${ ARTIFACT_PRODUCTION_BUCKET_NAME} " , path : " builds/test-release-candidates /$pluginFullPath /" , workingDir : " $WORKSPACE /artifacts/$artifactPath /builds/$filename /$pluginSubFolder /"
36
+ s3Upload(bucket : " ${ ARTIFACT_PRODUCTION_BUCKET_NAME} " , path : " releases /$pluginFullPath /" , workingDir : " $WORKSPACE /artifacts/$artifactPath /builds/$filename /$pluginSubFolder /"
37
37
, includePathPattern : " **/${ pluginName} *" )
38
38
}
39
39
@@ -42,9 +42,9 @@ void call(Map args = [:]) {
42
42
println (" Start Tar Core/Bundle Promotion to artifacts.opensearch.org Bucket" )
43
43
String coreFullPath = [' core' , filename, version]. join(' /' )
44
44
String bundleFullPath = [' bundle' , filename, version]. join(' /' )
45
- s3Upload(bucket : " ${ ARTIFACT_PRODUCTION_BUCKET_NAME} " , path : " builds/test-release-candidates /$coreFullPath /" , workingDir : " $WORKSPACE /artifacts/$artifactPath /builds/$filename /dist/"
45
+ s3Upload(bucket : " ${ ARTIFACT_PRODUCTION_BUCKET_NAME} " , path : " releases /$coreFullPath /" , workingDir : " $WORKSPACE /artifacts/$artifactPath /builds/$filename /dist/"
46
46
, includePathPattern : " **/${ filename} -min-${ version} *" )
47
- s3Upload(bucket : " ${ ARTIFACT_PRODUCTION_BUCKET_NAME} " , path : " builds/test-release-candidates /$bundleFullPath /" , workingDir : " $WORKSPACE /artifacts/$artifactPath /dist/$filename /"
47
+ s3Upload(bucket : " ${ ARTIFACT_PRODUCTION_BUCKET_NAME} " , path : " releases /$bundleFullPath /" , workingDir : " $WORKSPACE /artifacts/$artifactPath /dist/$filename /"
48
48
, includePathPattern : " **/${ filename} *-${ version} *" )
49
49
50
50
0 commit comments