34 lines
941 B
PHP

<?php
/* (c) Anton Medvedev <anton@medv.io>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Deployer;
task('deploy:info', function () {
$what = '';
$branch = get('branch');
if (!empty($branch)) {
$what = "<fg=magenta>$branch</fg=magenta>";
}
if (input()->hasOption('tag') && !empty(input()->getOption('tag'))) {
$tag = input()->getOption('tag');
$what = "tag <fg=magenta>$tag</fg=magenta>";
} else if (input()->hasOption('revision') && !empty(input()->getOption('revision'))) {
$revision = input()->getOption('revision');
$what = "revision <fg=magenta>$revision</fg=magenta>";
}
if (empty($what)) {
$what = "<fg=magenta>HEAD</fg=magenta>";
}
writeln("✈︎ Deploying $what on <fg=cyan>{{hostname}}</fg=cyan>");
})
->shallow()
->setPrivate();