We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 827d79a commit b9b8fedCopy full SHA for b9b8fed
utils/docker/publish_docker.sh
@@ -32,23 +32,23 @@ if [[ -z "${GITHUB_SHA}" ]]; then
32
fi
33
34
FOCAL_TAGS=(
35
- "next"
36
- "sha-${GITHUB_SHA}"
37
"next-focal"
38
)
39
if [[ "$RELEASE_CHANNEL" == "stable" ]]; then
40
- FOCAL_TAGS+=("latest")
41
FOCAL_TAGS+=("focal")
42
FOCAL_TAGS+=("v${PW_VERSION}-focal")
43
- FOCAL_TAGS+=("v${PW_VERSION}")
44
45
46
JAMMY_TAGS=(
+ "next"
47
"next-jammy"
+ "sha-${GITHUB_SHA}"
48
49
+ JAMMY_TAGS+=("latest")
50
JAMMY_TAGS+=("jammy")
51
JAMMY_TAGS+=("v${PW_VERSION}-jammy")
+ JAMMY_TAGS+=("v${PW_VERSION}")
52
53
54
tag_and_push() {
0 commit comments