Skip to content

Commit 29d19af

Browse files
committed
tag push
1 parent 3b168b8 commit 29d19af

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

.github/workflows/publication.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,6 @@ jobs:
4242
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
4343
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
4444
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
45+
46+
- name: Push tag
47+
run: gut push ; git push --tags

pom.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,19 @@
254254
</execution>
255255
</executions>
256256
</plugin>
257+
258+
<plugin>
259+
<groupId>org.apache.maven.plugins</groupId>
260+
<artifactId>maven-release-plugin</artifactId>
261+
<version>2.5.3</version>
262+
<configuration>
263+
<!-- Manual push if success -->
264+
<pushChanges>false</pushChanges>
265+
266+
<!-- One version to rule them all -->
267+
<autoVersionSubmodules>true</autoVersionSubmodules>
268+
</configuration>
269+
</plugin>
257270
</plugins>
258271
</build>
259272
</profile>

0 commit comments

Comments
 (0)