Skip to content

Commit 09abb9e

Browse files
committed
Update image locations in release script
1 parent b316ff2 commit 09abb9e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

scripts/release.sh

+6-6
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ tag_image() {
2323
# helm doesn't use v-prefixed versions, everything else does
2424
# NB: these will fail if the commit hasn't gone through CI and produced release-candidate images yet
2525
tag_image ghcr.io/buildkite/helm/agent-stack-k8s:${commitish:1} "$version"
26-
tag_image ghcr.io/buildkite/agent-stack-k8s:${commitish} "$tag"
27-
tag_image ghcr.io/buildkite/agent-k8s:${commitish} "$tag"
26+
tag_image ghcr.io/buildkite/agent-stack-k8s/controller:${commitish} "$tag"
27+
tag_image ghcr.io/buildkite/agent-stack-k8s/agent:${commitish} "$tag"
2828

2929
chart_digest=$(crane digest ghcr.io/buildkite/helm/agent-stack-k8s:${version})
30-
controller_digest=$(crane digest ghcr.io/buildkite/agent-stack-k8s:${tag})
31-
agent_digest=$(crane digest ghcr.io/buildkite/agent-k8s:${tag})
30+
controller_digest=$(crane digest ghcr.io/buildkite/agent-stack-k8s/controller:${tag})
31+
agent_digest=$(crane digest ghcr.io/buildkite/agent-stack-k8s/agent:${tag})
3232

3333
git tag -m "$tag" "$tag"
3434
git push origin "$tag" --force
@@ -42,11 +42,11 @@ Image: \`ghcr.io/buildkite/helm/agent-stack-k8s:${version}\`
4242
Digest: \`$chart_digest\`
4343
4444
### Controller
45-
Image: \`ghcr.io/buildkite/agent-stack-k8s:${tag}\`
45+
Image: \`ghcr.io/buildkite/agent-stack-k8s/controller:${tag}\`
4646
Digest: \`$controller_digest\`
4747
4848
### Agent
49-
Image: \`ghcr.io/buildkite/agent-k8s:${tag}\`
49+
Image: \`ghcr.io/buildkite/agent-stack-k8s/agent:${tag}\`
5050
Digest: \`$agent_digest\`
5151
EOF
5252

0 commit comments

Comments
 (0)