Skip to content

Commit

Permalink
#179 include the deploy phase to ci profile
Browse files Browse the repository at this point in the history
  • Loading branch information
csun-cpointe committed Jul 2, 2024
1 parent 8fd8aa9 commit d1482f4
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions extensions/extensions-docker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,24 @@
<properties>
<dockerImageVersion>${project.version}</dockerImageVersion>
</properties>
<build>
<plugins>
<plugin>
<groupId>io.fabric8</groupId>
<artifactId>docker-maven-plugin</artifactId>
<executions>
<execution>
<id>deploy</id>
<goals>
<goal>build</goal>
<goal>push</goal>
</goals>
<phase>package</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>ensure-docker-dependencies</id>
Expand Down

0 comments on commit d1482f4

Please sign in to comment.