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 7163012 commit 83837afCopy full SHA for 83837af
utils/docker/publish_docker.sh
@@ -35,25 +35,26 @@ if [[ -z "${GITHUB_SHA}" ]]; then
35
fi
36
37
FOCAL_TAGS=(
38
- "next"
39
- "sha-${GITHUB_SHA}"
40
"next-focal"
41
)
42
43
if [[ "$RELEASE_CHANNEL" == "stable" ]]; then
44
- FOCAL_TAGS+=("latest")
45
FOCAL_TAGS+=("focal")
46
FOCAL_TAGS+=("v${PW_VERSION}-focal")
47
- FOCAL_TAGS+=("v${PW_VERSION}")
48
49
50
JAMMY_TAGS=(
+ "next"
51
"next-jammy"
+ "sha-${GITHUB_SHA}"
52
"v${PW_VERSION}-jammy"
53
54
55
56
JAMMY_TAGS+=("jammy")
+ JAMMY_TAGS+=("latest")
+ JAMMY_TAGS+=("v${PW_VERSION}")
57
+ JAMMY_TAGS+=("v${PW_VERSION}-jammy")
58
59
60
tag_and_push() {
0 commit comments