generated from thegrind/laravel-dockerized
Update action with correct name
This commit is contained in:
parent
01c8471ae9
commit
b5ff255063
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
@ -48,5 +48,5 @@ jobs:
|
|||||||
file: ${{ github.workspace }}/Dockerfile
|
file: ${{ github.workspace }}/Dockerfile
|
||||||
push: true
|
push: true
|
||||||
tags: |
|
tags: |
|
||||||
gitgud.foo/thegrind/flowtodo:latest
|
gitgud.foo/thegrind/scripthost:latest
|
||||||
gitgud.foo/thegrind/flowtodo:${{ github.event.release.tag_name }}
|
gitgud.foo/thegrind/scripthost:${{ github.event.release.tag_name }}
|
@ -5,7 +5,7 @@ namespace App\Livewire\Forms;
|
|||||||
use Livewire\Attributes\Validate;
|
use Livewire\Attributes\Validate;
|
||||||
use Livewire\Component;
|
use Livewire\Component;
|
||||||
|
|
||||||
class NewScript extends Component
|
class Script extends Component
|
||||||
{
|
{
|
||||||
#[Validate('required')]
|
#[Validate('required')]
|
||||||
public string $name = '';
|
public string $name = '';
|
||||||
@ -28,6 +28,6 @@ class NewScript extends Component
|
|||||||
|
|
||||||
public function render()
|
public function render()
|
||||||
{
|
{
|
||||||
return view('livewire.forms.new-script');
|
return view('livewire.forms.script');
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,7 +1,10 @@
|
|||||||
<x-layouts.app :title="__('Dashboard')">
|
<x-layouts.app :title="__('Dashboard')">
|
||||||
<div class="max-w-4xl mx-auto">
|
<div class="grid grid-cols-12 gap-3">
|
||||||
<livewire:forms.new-script />
|
<div class="col-span-5">
|
||||||
<div class="mt-8">
|
<livewire:forms.script />
|
||||||
|
</div>
|
||||||
|
<div class="col-span-7 px-24 space-y-4">
|
||||||
|
<flux:heading size="xl">Your Scripts</flux:heading>
|
||||||
@foreach (auth()->user()->scripts as $s)
|
@foreach (auth()->user()->scripts as $s)
|
||||||
<div class="bg-gray-300 dark:bg-zinc-700 p-4 mb-4 space-y-4">
|
<div class="bg-gray-300 dark:bg-zinc-700 p-4 mb-4 space-y-4">
|
||||||
<flux:text size="xl">{{ $s->name }}</flux:text>
|
<flux:text size="xl">{{ $s->name }}</flux:text>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user