Skip to content

Commit 6d2a537

Browse files
committed
Rename docker context artifacts to satisfy release-manager (#55692)
Our release tool expects artifacts to have a certain naming convention. Rename the Docker context artifacts to match this convention.
1 parent de30550 commit 6d2a537

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

distribution/docker/docker-aarch64-build-context/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ apply plugin: 'base'
33
task buildDockerBuildContext(type: Tar) {
44
extension = 'tar.gz'
55
compression = Compression.GZIP
6-
archiveClassifier = "docker-build-context"
7-
archiveBaseName = "elasticsearch-aarch64"
6+
archiveClassifier = "docker-build-context-aarch64"
7+
archiveBaseName = "elasticsearch"
88
with dockerBuildContext("aarch64", false, false)
99
}
1010

distribution/docker/oss-docker-aarch64-build-context/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ apply plugin: 'base'
33
task buildOssDockerBuildContext(type: Tar) {
44
extension = 'tar.gz'
55
compression = Compression.GZIP
6-
archiveClassifier = "docker-build-context"
7-
archiveBaseName = "elasticsearch-aarch64-oss"
6+
archiveClassifier = "docker-build-context-aarch64"
7+
archiveBaseName = "elasticsearch-oss"
88
with dockerBuildContext("aarch64", true, false)
99
}
1010

0 commit comments

Comments
 (0)