This is an automated email from the ASF dual-hosted git repository.
xiaoyu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-shenyu.git
The following commit(s) were added to refs/heads/master by this push:
new 7df5d56 feature(dist): bootstrap build 2 images: lastest and version
, same to admin (#2379)
7df5d56 is described below
commit 7df5d56aab9c8892c007c829bd71b218f6d95734
Author: luoxiaolong <[email protected]>
AuthorDate: Wed Nov 17 15:53:35 2021 +0800
feature(dist): bootstrap build 2 images: lastest and version , same to
admin (#2379)
---
shenyu-dist/shenyu-bootstrap-dist/pom.xml | 15 +++++++++++++--
1 file changed, 13 insertions(+), 2 deletions(-)
diff --git a/shenyu-dist/shenyu-bootstrap-dist/pom.xml
b/shenyu-dist/shenyu-bootstrap-dist/pom.xml
index a29655b..ed7e142 100644
--- a/shenyu-dist/shenyu-bootstrap-dist/pom.xml
+++ b/shenyu-dist/shenyu-bootstrap-dist/pom.xml
@@ -96,15 +96,26 @@
<version>${dockerfile-maven-plugin.version}</version>
<executions>
<execution>
- <id>shenyu-bootstrap</id>
+ <id>tag-latest</id>
<goals>
<goal>build</goal>
</goals>
+ <configuration>
+ <tag>latest</tag>
+ </configuration>
+ </execution>
+ <execution>
+ <id>tag-version</id>
+ <goals>
+ <goal>build</goal>
+ </goals>
+ <configuration>
+ <tag>${project.version}</tag>
+ </configuration>
</execution>
</executions>
<configuration>
<repository>apache/shenyu-bootstrap</repository>
- <tag>${project.version}</tag>
<buildArgs>
<APP_NAME>apache-shenyu-incubating-${project.version}-bootstrap-bin</APP_NAME>
</buildArgs>