mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-13 08:25:26 +00:00
Our release tool expects artifacts to have a certain naming convention. Rename the Docker context artifacts to match this convention.
12 lines
315 B
Groovy
12 lines
315 B
Groovy
apply plugin: 'base'
|
|
|
|
task buildOssDockerBuildContext(type: Tar) {
|
|
extension = 'tar.gz'
|
|
compression = Compression.GZIP
|
|
archiveClassifier = "docker-build-context-aarch64"
|
|
archiveBaseName = "elasticsearch-oss"
|
|
with dockerBuildContext("aarch64", true, false)
|
|
}
|
|
|
|
assemble.dependsOn buildOssDockerBuildContext
|