Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cbfc3ef

Browse files
committed
Added Gitflow plugin and cleaned up Action scripts
1 parent 1479bc3 commit cbfc3ef

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

.github/workflows/build.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,8 @@ jobs:
6767
- name: Install demo project
6868
run: .travis/install_demo_project.sh
6969

70-
- name: Build
71-
run: mvn package -DskipTests
72-
- name: Test
73-
run: mvn package verify jar:jar appassembler:assemble
70+
- name: Build and Test
71+
run: mvn verify jar:jar appassembler:assemble
7472

7573
slack-workflow-status:
7674
if: always()

.github/workflows/release.yml

-2
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,6 @@ jobs:
6767
- name: Install demo project
6868
run: .travis/install_demo_project.sh
6969

70-
- name: Build
71-
run: mvn package -DskipTests
7270
- name: Test
7371
run: mvn verify appassembler:assemble assembly:single
7472

pom.xml

+8
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,14 @@
145145
</descriptors>
146146
</configuration>
147147
</plugin>
148+
<plugin>
149+
<groupId>com.amashchenko.maven.plugin</groupId>
150+
<artifactId>gitflow-maven-plugin</artifactId>
151+
<version>1.18.0</version>
152+
<configuration>
153+
<verbose>true</verbose>
154+
</configuration>
155+
</plugin>
148156
</plugins>
149157
<resources>
150158
<resource>

0 commit comments

Comments
 (0)