Update action with correct name
Some checks failed
tests / ci (push) Has been cancelled
linter / quality (push) Has been cancelled
Build & Push Docker Image to Registry / build (release) Successful in 4m21s

This commit is contained in:
Javier Feliz 2025-07-22 22:24:21 -04:00
parent 01c8471ae9
commit b5ff255063
4 changed files with 10 additions and 7 deletions

View File

@ -48,5 +48,5 @@ jobs:
file: ${{ github.workspace }}/Dockerfile
push: true
tags: |
gitgud.foo/thegrind/flowtodo:latest
gitgud.foo/thegrind/flowtodo:${{ github.event.release.tag_name }}
gitgud.foo/thegrind/scripthost:latest
gitgud.foo/thegrind/scripthost:${{ github.event.release.tag_name }}

View File

@ -5,7 +5,7 @@ namespace App\Livewire\Forms;
use Livewire\Attributes\Validate;
use Livewire\Component;
class NewScript extends Component
class Script extends Component
{
#[Validate('required')]
public string $name = '';
@ -28,6 +28,6 @@ class NewScript extends Component
public function render()
{
return view('livewire.forms.new-script');
return view('livewire.forms.script');
}
}

View File

@ -1,7 +1,10 @@
<x-layouts.app :title="__('Dashboard')">
<div class="max-w-4xl mx-auto">
<livewire:forms.new-script />
<div class="mt-8">
<div class="grid grid-cols-12 gap-3">
<div class="col-span-5">
<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)
<div class="bg-gray-300 dark:bg-zinc-700 p-4 mb-4 space-y-4">
<flux:text size="xl">{{ $s->name }}</flux:text>