Skip to content

Commit

Permalink
devops: fix Docker jammy publishing (#1519)
Browse files Browse the repository at this point in the history
  • Loading branch information
mxschmitt committed Aug 19, 2022
1 parent 2d922d2 commit 5066b70
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions utils/docker/publish_docker.sh
Expand Up @@ -47,15 +47,15 @@ FOCAL_TAGS=(
JAMMY_TAGS=(
"next-jammy"
)
if [[ "$RELEASE_CHANNEL" == "stable" ]]; then
JAMMY_TAGS+=("jammy")
fi

if [[ "$RELEASE_CHANNEL" == "stable" ]]; then
FOCAL_TAGS+=("latest")
FOCAL_TAGS+=("focal")
FOCAL_TAGS+=("v${PW_VERSION}-focal")
FOCAL_TAGS+=("v${PW_VERSION}")

JAMMY_TAGS+=("jammy")
JAMMY_TAGS+=("v${PW_VERSION}-jammy")
fi

tag_and_push() {
Expand Down

0 comments on commit 5066b70

Please sign in to comment.