Skip to content

Commit

Permalink
Update release-commit.php
Browse files Browse the repository at this point in the history
  • Loading branch information
usernane committed Dec 16, 2024
1 parent a419a3e commit 14a27ac
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion release-commit.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,7 @@
require __DIR__.DIRECTORY_SEPARATOR.'vendor'.DIRECTORY_SEPARATOR.'autoload.php';
webfiori\framework\App::initFrameworkVersionInfo();
echo "Creating Commit...\n";
exec('git commit --allow-empty -m "chore: release '.WF_VERSION.'" -m "Release-As: '.WF_VERSION.'"');
$commit = 'git commit --allow-empty -m "chore: release v'.WF_VERSION.'" -m "Release-As: v'.WF_VERSION.'"';
echo $commit."\n";
exec($commit);
echo 'Commit Created.';

0 comments on commit 14a27ac

Please sign in to comment.