Skip to content

Commit 3503ce9

Browse files
authored
cherry-pick(#1519): devops: fix Docker jammy publishing (#1520)
1 parent 87ca3f1 commit 3503ce9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

utils/docker/publish_docker.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,15 @@ FOCAL_TAGS=(
4747
JAMMY_TAGS=(
4848
"next-jammy"
4949
)
50-
if [[ "$RELEASE_CHANNEL" == "stable" ]]; then
51-
JAMMY_TAGS+=("jammy")
52-
fi
5350

5451
if [[ "$RELEASE_CHANNEL" == "stable" ]]; then
5552
FOCAL_TAGS+=("latest")
5653
FOCAL_TAGS+=("focal")
5754
FOCAL_TAGS+=("v${PW_VERSION}-focal")
5855
FOCAL_TAGS+=("v${PW_VERSION}")
56+
57+
JAMMY_TAGS+=("jammy")
58+
JAMMY_TAGS+=("v${PW_VERSION}-jammy")
5959
fi
6060

6161
tag_and_push() {

0 commit comments

Comments
 (0)