diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 6a9d5db..10312ab 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -17,12 +17,17 @@ jobs: uses: shivammathur/setup-php@v2 with: php-version: '8.2' # Or your PHP version - extensions: mbstring, xml, dom + extensions: mbstring, xml, dom, sqlite3 ini-values: post_max_size=256M, upload_max_filesize=256M - name: Install Composer dependencies run: composer install + - name: Set APP_DEBUG to true for debugging + run: echo "APP_DEBUG=true" >> .env + run: echo "APP_ENV=production" >> .env + run: echo "APP_URL=https://electrik.dev" >> .env + - name: Build static files run: php artisan export