21
21
exit 1
22
22
fi
23
23
24
- # Ubuntu 20.04
25
- FOCAL_TAGS=(
26
- " v${PW_VERSION} -focal"
27
- )
28
-
29
24
# Ubuntu 22.04
30
25
JAMMY_TAGS=(
31
26
" v${PW_VERSION} -jammy"
@@ -69,14 +64,12 @@ install_oras_if_needed() {
69
64
publish_docker_images_with_arch_suffix () {
70
65
local FLAVOR=" $1 "
71
66
local TAGS=()
72
- if [[ " $FLAVOR " == " focal" ]]; then
73
- TAGS=(" ${FOCAL_TAGS[@]} " )
74
- elif [[ " $FLAVOR " == " jammy" ]]; then
67
+ if [[ " $FLAVOR " == " jammy" ]]; then
75
68
TAGS=(" ${JAMMY_TAGS[@]} " )
76
69
elif [[ " $FLAVOR " == " noble" ]]; then
77
70
TAGS=(" ${NOBLE_TAGS[@]} " )
78
71
else
79
- echo " ERROR: unknown flavor - $FLAVOR . Must be either 'focal', ' jammy' or 'noble'"
72
+ echo " ERROR: unknown flavor - $FLAVOR . Must be either 'jammy' or 'noble'"
80
73
exit 1
81
74
fi
82
75
local ARCH=" $2 "
@@ -97,14 +90,12 @@ publish_docker_images_with_arch_suffix() {
97
90
publish_docker_manifest () {
98
91
local FLAVOR=" $1 "
99
92
local TAGS=()
100
- if [[ " $FLAVOR " == " focal" ]]; then
101
- TAGS=(" ${FOCAL_TAGS[@]} " )
102
- elif [[ " $FLAVOR " == " jammy" ]]; then
93
+ if [[ " $FLAVOR " == " jammy" ]]; then
103
94
TAGS=(" ${JAMMY_TAGS[@]} " )
104
95
elif [[ " $FLAVOR " == " noble" ]]; then
105
96
TAGS=(" ${NOBLE_TAGS[@]} " )
106
97
else
107
- echo " ERROR: unknown flavor - $FLAVOR . Must be either 'focal', ' jammy' or 'noble'"
98
+ echo " ERROR: unknown flavor - $FLAVOR . Must be either 'jammy' or 'noble'"
108
99
exit 1
109
100
fi
110
101
@@ -123,10 +114,6 @@ publish_docker_manifest () {
123
114
done
124
115
}
125
116
126
- publish_docker_images_with_arch_suffix focal amd64
127
- publish_docker_images_with_arch_suffix focal arm64
128
- publish_docker_manifest focal amd64 arm64
129
-
130
117
publish_docker_images_with_arch_suffix jammy amd64
131
118
publish_docker_images_with_arch_suffix jammy arm64
132
119
publish_docker_manifest jammy amd64 arm64
0 commit comments