Skip to content

Commit 66a6e52

Browse files
committed
update version to 3.0.4
1 parent cbab52a commit 66a6e52

File tree

7 files changed

+23
-20
lines changed

7 files changed

+23
-20
lines changed

mse-simple-demo/A/build.sh

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,15 @@
33
export REGISTRY=${REGISTRY}
44

55
export appName=spring-cloud-a
6-
export version=3.0.3
6+
export VERSION="${VERSION:-3.0.4}"
77

88
set -e
99

1010
cd "$(dirname "$0")"
1111

12-
docker build --platform linux/amd64 . -t ${REGISTRY}${appName}:${version}
12+
docker build --platform linux/amd64 . -t ${REGISTRY}${appName}:${VERSION}
1313

1414
if [ -n "${REGISTRY}" ]; then
15-
docker push ${REGISTRY}${appName}:${version}
16-
fi
15+
docker push ${REGISTRY}${appName}:${VERSION}
16+
fi
17+

mse-simple-demo/B/build.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
export REGISTRY=${REGISTRY}
44

55
export appName=spring-cloud-b
6-
export version=3.0.3
6+
export VERSION="${VERSION:-3.0.4}"
77

88
set -e
99

1010
cd "$(dirname "$0")"
1111

12-
docker build --platform linux/amd64 . -t ${REGISTRY}${appName}:${version}
12+
docker build --platform linux/amd64 . -t ${REGISTRY}${appName}:${VERSION}
1313

1414
if [ -n "${REGISTRY}" ]; then
15-
docker push ${REGISTRY}${appName}:${version}
15+
docker push ${REGISTRY}${appName}:${VERSION}
1616
fi

mse-simple-demo/C/build.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
export REGISTRY=${REGISTRY}
44

55
export appName=spring-cloud-c
6-
export version=3.0.3
6+
export VERSION="${VERSION:-3.0.4}"
77

88
set -e
99

1010
cd "$(dirname "$0")"
1111

12-
docker build --platform linux/amd64 . -t ${REGISTRY}${appName}:${version}
12+
docker build --platform linux/amd64 . -t ${REGISTRY}${appName}:${VERSION}
1313

1414
if [ -n "${REGISTRY}" ]; then
15-
docker push ${REGISTRY}${appName}:${version}
15+
docker push ${REGISTRY}${appName}:${VERSION}
1616
fi

mse-simple-demo/SpringCloudGateway/build.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
export REGISTRY=${REGISTRY}
33

44
export appName=spring-cloud-gateway
5-
export version=3.0.3
5+
export VERSION="${VERSION:-3.0.4}"
66

77
set -e
88

99
cd "$(dirname "$0")"
1010

11-
docker build --platform linux/amd64 . -t ${REGISTRY}${appName}:${version}
11+
docker build --platform linux/amd64 . -t ${REGISTRY}${appName}:${VERSION}
1212

1313
if [ -n "${REGISTRY}" ]; then
14-
docker push ${REGISTRY}${appName}:${version}
14+
docker push ${REGISTRY}${appName}:${VERSION}
1515
fi

mse-simple-demo/ZuulGateway/build.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
export REGISTRY=${REGISTRY}
44

55
export appName=spring-cloud-zuul
6-
export version=3.0.3
6+
export VERSION="${VERSION:-3.0.4}"
77

88
set -e
99

1010
cd "$(dirname "$0")"
1111

12-
docker build --platform linux/amd64 . -t ${REGISTRY}${appName}:${version}
12+
docker build --platform linux/amd64 . -t ${REGISTRY}${appName}:${VERSION}
1313

1414
if [ -n "${REGISTRY}" ]; then
15-
docker push ${REGISTRY}${appName}:${version}
15+
docker push ${REGISTRY}${appName}:${VERSION}
1616
fi

mse-simple-demo/build.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/bin/sh
22
# Select the correct warehouse prefix
33
export REGISTRY=${REGISTRY}
4+
export VERSION="${VERSION:-3.0.4}"
45

56
set -e
67

mse-simple-demo/mysql/build.sh

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22
export REGISTRY=${REGISTRY}
33

44
export appName=demo-mysql
5-
export version=3.0.3
5+
export VERSION="${VERSION:-3.0.4}"
66

77
set -e
88

99
cd "$(dirname "$0")"
1010

11-
docker build --platform linux/amd64 . -t ${REGISTRY}${appName}:${version}
11+
docker build --platform linux/amd64 . -t ${REGISTRY}${appName}:${VERSION}
1212

1313
if [ -n "${REGISTRY}" ]; then
14-
docker push ${REGISTRY}${appName}:${version}
15-
fi
14+
docker push ${REGISTRY}${appName}:${VERSION}
15+
fi
16+

0 commit comments

Comments
 (0)