File tree 2 files changed +15
-10
lines changed
2 files changed +15
-10
lines changed Original file line number Diff line number Diff line change @@ -110,16 +110,7 @@ cp "out/minikube-${RPM_VERSION}-0.armv7hl.rpm" out/minikube-latest.armv7hl.rpm
110
110
cp " out/minikube-${RPM_VERSION} -0.ppc64le.rpm" out/minikube-latest.ppc64le.rpm
111
111
cp " out/minikube-${RPM_VERSION} -0.s390x.rpm" out/minikube-latest.s390x.rpm
112
112
113
- gsutil -m cp out/* " gs://$BUCKET /releases/$TAGNAME /"
114
113
115
- # Update "latest" release for non-beta/non-alpha builds
116
- if ! [[ ${VERSION_BUILD} =~ ^[0-9]+$ ]]; then
117
- echo " NOTE: ${VERSION} appears to be a non-standard release, not updating /releases/latest"
118
- exit 0
119
- fi
120
-
121
- # echo "Updating Docker images ..."
122
- # make push-gvisor-addon-image push-storage-provisioner-manifest
123
114
124
115
echo " Generating tarballs for kicbase images"
125
116
# first get the correct tag of the kic base image
136
127
docker rmi -f ${IMAGE_NAME}
137
128
done
138
129
130
+
131
+ # upload to google bucket
132
+ gsutil -m cp out/* " gs://$BUCKET /releases/$TAGNAME /"
133
+
134
+ # Update "latest" release for non-beta/non-alpha builds
135
+ if ! [[ ${VERSION_BUILD} =~ ^[0-9]+$ ]]; then
136
+ echo " NOTE: ${VERSION} appears to be a non-standard release, not updating /releases/latest"
137
+ exit 0
138
+ fi
139
+
140
+ # echo "Updating Docker images ..."
141
+ # make push-gvisor-addon-image push-storage-provisioner-manifest
142
+
143
+
139
144
echo " Updating latest bucket for ${VERSION} release ..."
140
145
gsutil cp -r " gs://${BUCKET} /releases/${TAGNAME} /*" " gs://${BUCKET} /releases/latest/"
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ for path in $(gsutil ls "gs://${ISO_BUCKET}/minikube-v${VERSION}*" || true); do
92
92
done
93
93
94
94
# Upload all end-user assets other than preload files, as they are release independent
95
- for file in $( find out \( -name " minikube[_-]*" -or -name " docker-machine-*" \) ) ; do
95
+ for file in $( find out \( -name " minikube[_-]*" -or -name " docker-machine-*" -or -name " kic* " \) ) ; do
96
96
n=0
97
97
until [ $n -ge 5 ]
98
98
do
You can’t perform that action at this time.
0 commit comments