Skip to content

Commit b9b8fed

Browse files
authored
devops: have Jammy as Docker default (#1884)
1 parent 827d79a commit b9b8fed

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

utils/docker/publish_docker.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,23 +32,23 @@ if [[ -z "${GITHUB_SHA}" ]]; then
3232
fi
3333

3434
FOCAL_TAGS=(
35-
"next"
36-
"sha-${GITHUB_SHA}"
3735
"next-focal"
3836
)
3937
if [[ "$RELEASE_CHANNEL" == "stable" ]]; then
40-
FOCAL_TAGS+=("latest")
4138
FOCAL_TAGS+=("focal")
4239
FOCAL_TAGS+=("v${PW_VERSION}-focal")
43-
FOCAL_TAGS+=("v${PW_VERSION}")
4440
fi
4541

4642
JAMMY_TAGS=(
43+
"next"
4744
"next-jammy"
45+
"sha-${GITHUB_SHA}"
4846
)
4947
if [[ "$RELEASE_CHANNEL" == "stable" ]]; then
48+
JAMMY_TAGS+=("latest")
5049
JAMMY_TAGS+=("jammy")
5150
JAMMY_TAGS+=("v${PW_VERSION}-jammy")
51+
JAMMY_TAGS+=("v${PW_VERSION}")
5252
fi
5353

5454
tag_and_push() {

0 commit comments

Comments
 (0)