We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89cae6d commit 73cf5ddCopy full SHA for 73cf5dd
1 file changed
gulpfile.js
@@ -121,6 +121,17 @@ ${formatPackageUpgrades(validUpgrades)}`);
121
],
122
{ stdio: 'inherit' }
123
);
124
+ spawn.sync(
125
+ 'git',
126
+ [
127
+ 'tag',
128
+ '--sign',
129
+ '--message',
130
+ `Automatic ${upgradeType} upgrade of ${name} to ${newVersion} (from ${version})`,
131
+ `${name}_${newVersion}`,
132
+ ],
133
+ { stdio: 'inherit' }
134
+ );
135
136
if (
137
manifest.files
0 commit comments