Skip to content

Commit

Permalink
docker: Make latest point to latest shelley image
Browse files Browse the repository at this point in the history
The shelley backend will work on both networks, and the byron backend
will be deleted soon.
  • Loading branch information
rvl committed Jul 23, 2020
1 parent c01efcf commit 1b9353e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .buildkite/docker-build-push.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,11 @@
# 3. After pushing the image to the repo, the "latest" tags are updated.
#
# - "inputoutput/cardano-wallet:latest" should point to the most
# recent VERSION-byron tag build.
# recent VERSION-shelley tag build.
# - "inputoutput/cardano-wallet:byron" should point to the most
# recent VERSION-byron tag build.
# - "inputoutput/cardano-wallet:shelley" should point to the most
# recent VERSION-shelley tag build.
# - "inputoutput/cardano-wallet:jormungandr" should point to the most
# recent VERSION-jormungandr tag build.
#
Expand Down Expand Up @@ -78,7 +80,7 @@ in
if [[ "$git_tag" =~ ^v20 ]]; then
tags+=( "${image.imageTag}" )
tags+=( "${image.backend}" )
${optionalString (image.backend == "byron") ''
${optionalString (image.backend == "shelley") ''
tags+=( "latest" )
''}
elif [[ "$git_branch" = master ]]; then
Expand Down

0 comments on commit 1b9353e

Please sign in to comment.