Skip to content

Commit

Permalink
devops: have Jammy as Docker default (#1884)
Browse files Browse the repository at this point in the history
  • Loading branch information
mxschmitt committed Apr 27, 2023
1 parent 827d79a commit b9b8fed
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions utils/docker/publish_docker.sh
Expand Up @@ -32,23 +32,23 @@ if [[ -z "${GITHUB_SHA}" ]]; then
fi

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

JAMMY_TAGS=(
"next"
"next-jammy"
"sha-${GITHUB_SHA}"
)
if [[ "$RELEASE_CHANNEL" == "stable" ]]; then
JAMMY_TAGS+=("latest")
JAMMY_TAGS+=("jammy")
JAMMY_TAGS+=("v${PW_VERSION}-jammy")
JAMMY_TAGS+=("v${PW_VERSION}")
fi

tag_and_push() {
Expand Down

0 comments on commit b9b8fed

Please sign in to comment.