diff --git a/.github/workflows/laravel.yml b/.github/workflows/laravel.yml index 42736d9..485c35a 100644 --- a/.github/workflows/laravel.yml +++ b/.github/workflows/laravel.yml @@ -2,6 +2,8 @@ name: Laravel on: push: + tags: + - "*" branches: [ "master" ] pull_request: branches: [ "master" ] diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php deleted file mode 100644 index d8bc1d2..0000000 --- a/app/Console/Kernel.php +++ /dev/null @@ -1,32 +0,0 @@ -command('inspire')->hourly(); - } - - /** - * Register the commands for the application. - * - * @return void - */ - protected function commands() - { - $this->load(__DIR__.'/Commands'); - - require base_path('routes/console.php'); - } -}