Skip to content

Commit db0183a

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

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

pom.xml

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

0 commit comments

Comments
 (0)