Skip to content

Commit 83837af

Browse files
authored
docker: use Jammy as Docker default (#1267)
1 parent 7163012 commit 83837af

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

utils/docker/publish_docker.sh

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,25 +35,26 @@ if [[ -z "${GITHUB_SHA}" ]]; then
3535
fi
3636

3737
FOCAL_TAGS=(
38-
"next"
39-
"sha-${GITHUB_SHA}"
4038
"next-focal"
4139
)
4240

4341
if [[ "$RELEASE_CHANNEL" == "stable" ]]; then
44-
FOCAL_TAGS+=("latest")
4542
FOCAL_TAGS+=("focal")
4643
FOCAL_TAGS+=("v${PW_VERSION}-focal")
47-
FOCAL_TAGS+=("v${PW_VERSION}")
4844
fi
4945

5046
JAMMY_TAGS=(
47+
"next"
5148
"next-jammy"
49+
"sha-${GITHUB_SHA}"
5250
"v${PW_VERSION}-jammy"
5351
)
5452

5553
if [[ "$RELEASE_CHANNEL" == "stable" ]]; then
5654
JAMMY_TAGS+=("jammy")
55+
JAMMY_TAGS+=("latest")
56+
JAMMY_TAGS+=("v${PW_VERSION}")
57+
JAMMY_TAGS+=("v${PW_VERSION}-jammy")
5758
fi
5859

5960
tag_and_push() {

0 commit comments

Comments
 (0)