deployphp /
deployer
| 1 | <?php |
||
| 2 | |||
| 3 | namespace Deployer; |
||
| 4 | |||
| 5 | localhost('prod')->setLabels(['env' => 'prod']); |
||
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 6 | localhost('beta')->setLabels(['env' => 'dev']); |
||
| 7 | localhost('dev')->setLabels(['env' => 'dev']); |
||
| 8 | |||
| 9 | task('test', function () { |
||
| 10 | on(select('env=dev'), function () { |
||
| 11 | info('executing on {{alias}}'); |
||
| 12 | }); |
||
| 13 | }); |
||
| 14 |