coolify/resources/views/livewire/project/application/deploy.blade.php

38 lines
1.5 KiB
PHP
Raw Normal View History

2023-05-18 13:26:35 +02:00
<div class="flex items-center gap-2">
2023-04-12 15:42:01 +02:00
@if ($application->status === 'running')
2023-05-22 15:47:40 +02:00
<div class="dropdown dropdown-bottom">
<button tabindex="0"
2023-05-22 22:30:33 +02:00
class="flex items-center justify-center h-full text-white normal-case rounded-none bg-primary btn btn-xs hover:bg-primary no-animation">
2023-05-22 15:47:40 +02:00
Actions
<x-chevron-down />
</button>
<ul tabindex="0"
class="text-xs text-white normal-case rounded min-w-max dropdown-content menu bg-coolgray-200">
<li>
<div wire:click='stop'>Stop</div>
</li>
<li>
<div wire:click='forceRebuild'>Force deploy without cache</div>
</li>
</ul>
2023-05-18 15:12:26 +02:00
</div>
2023-04-12 15:42:01 +02:00
@else
2023-05-22 15:47:40 +02:00
<div class="dropdown dropdown-bottom">
<button tabindex="0"
2023-05-22 22:30:33 +02:00
class="flex items-center justify-center h-full text-white normal-case rounded-none bg-primary btn btn-xs hover:bg-primary no-animation">
2023-05-22 15:47:40 +02:00
Actions
<x-chevron-down />
</button>
<ul tabindex="0"
class="text-xs text-white normal-case rounded min-w-max dropdown-content menu bg-coolgray-200">
<li>
<div wire:click='start'>Deploy</div>
</li>
<li>
<div wire:click='forceRebuild'>Deploy without cache</div>
</li>
</ul>
2023-05-18 15:12:26 +02:00
</div>
2023-04-12 15:42:01 +02:00
@endif
</div>