Skip to content

Commit 7c7b9a1

Browse files
committed
Fix release workflow
Make release step pull locally and don't push changes.
1 parent 6cc5276 commit 7c7b9a1

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

pom.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,27 @@
7676
</systemPropertyVariables>
7777
</configuration>
7878
</plugin>
79+
<plugin>
80+
<artifactId>maven-release-plugin</artifactId>
81+
<version>2.5.3</version>
82+
<configuration>
83+
<tagNameFormat>scylla-cdc-@{project.version}</tagNameFormat>
84+
<autoVersionSubmodules>true</autoVersionSubmodules>
85+
<!-- useReleaseProfile>false</useReleaseProfile>
86+
<releaseProfiles>release</releaseProfiles>
87+
<goals>deploy</goals-->
88+
<localCheckout>true</localCheckout>
89+
<pushChanges>false</pushChanges>
90+
<arguments>-Dgpg.passphrase=${gpg.passphrase}</arguments>
91+
</configuration>
92+
<dependencies>
93+
<dependency>
94+
<groupId>org.apache.maven.scm</groupId>
95+
<artifactId>maven-scm-provider-gitexe</artifactId>
96+
<version>1.9.5</version>
97+
</dependency>
98+
</dependencies>
99+
</plugin>
79100
</plugins>
80101
</pluginManagement>
81102
</build>

0 commit comments

Comments
 (0)