Fixed tag script, potentially.

This commit is contained in:
flash 2025-05-13 17:28:26 +00:00
parent 40a96029ff
commit 4e66852db1
Signed by: flash
GPG key ID: 2C9C2C574D47FE3E

View file

@ -21,7 +21,7 @@ $version = trim($version);
$workingDir = getcwd();
try {
chdir(dirname($path));
echo shell_exec(sprintf('git tag %s', $version));
echo shell_exec(sprintf('git tag %s -m "%s"', $version, $version));
echo shell_exec(sprintf('git push origin %s', $version));
} finally {
chdir($workingDir);