Skip to content

Commit 889216b

Browse files
committed
Adds signTag parameter documentation
1 parent b283f70 commit 889216b

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,12 @@ Below are some properties of the Release Plugin Convention that are specific to
159159
<td>{empty}</td>
160160
<td>Defines an array of options to add to the git adapter during a push. This could be useful to have the vc hooks skipped during a release. Example `pushOptions = ["--no-verify"]`</td>
161161
</tr>
162+
<tr>
163+
<td>Git</td>
164+
<td>signTag</td>
165+
<td>false</td>
166+
<td>Adds `-s` parameter to the tag command</td>
167+
</tr>
162168
</table>
163169

164170
To set any of these properties to false, add a "release" configuration to your project's ```build.gradle``` file. Eg. To ignore un-versioned files, you would add the following to your ```build.gradle``` file:
@@ -206,6 +212,7 @@ release {
206212
pushToRemote = 'origin'
207213
pushToBranchPrefix = ''
208214
commitVersionFileOnly = false
215+
signTag = false
209216
}
210217
211218
svn {

0 commit comments

Comments
 (0)