diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ef67001aca93..31e5e8a4e0b1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,6 +35,7 @@ jobs: php artisan key:generate php artisan optimize php artisan storage:link + php artisan livewire:publish sudo php artisan cache:clear sudo find ./vendor/bin/ -type f -exec chmod +x {} \; sudo find ./ -type d -exec chmod 755 {} \; diff --git a/database/migrations/2022_03_29_014025_reverse_apple_domain_for_hosted.php b/database/migrations/2022_03_29_014025_reverse_apple_domain_for_hosted.php index 684ed4cb9c34..509eb42065f0 100644 --- a/database/migrations/2022_03_29_014025_reverse_apple_domain_for_hosted.php +++ b/database/migrations/2022_03_29_014025_reverse_apple_domain_for_hosted.php @@ -40,6 +40,19 @@ class ReverseAppleDomainForHosted extends Migration $chf->symbol = 'CHF'; $chf->save(); } + + if(Ninja::isSelfHost()) + { + + $gateway = Gateway::find(20); + + if($gateway) + { + $gateway->fields = '{"publishableKey":"","apiKey":"","appleDomainVerification":""}'; + $gateway->save(); + } + + } } /**