Added tags for Github builds.
This commit is contained in:
parent
f26f000bb4
commit
647a5cedcd
9 changed files with 151 additions and 22 deletions
|
|
@ -27,6 +27,9 @@
|
|||
<a target="_blank" href="<?php print $build->getBranchLink(); ?>">
|
||||
<span class="label label-default"><?php print $build->getBranch(); ?></span>
|
||||
</a>
|
||||
<?php if ($tag = $build->getTag()): ?> /
|
||||
<span class='label label-info'><?= $tag; ?></span>
|
||||
<?php endif; ?>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
|
|
|
|||
|
|
@ -59,7 +59,10 @@ $branches = $build->getExtra('branches');
|
|||
</td>
|
||||
<td>
|
||||
<a href="<?php print $build->getBranchLink(); ?>" target="_blank"><?php print $build->getBranch(); ?></a>
|
||||
<?php print $branches ? ' + '.implode(', ', $branches) : ''; ?>
|
||||
<?= $branches ? ' + '.implode(', ', $branches) : ''; ?>
|
||||
<?php if ($tag = $build->getTag()): ?> /
|
||||
<span class='label label-info'><?= $tag; ?></span>
|
||||
<?php endif; ?>
|
||||
</td>
|
||||
<td>
|
||||
<?php
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue