fix: run artisan key:generate after composer install
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Joris Slagter
2025-12-02 22:37:19 +01:00
parent 9a95c9abfe
commit 97f8b07ff9

View File

@@ -17,9 +17,10 @@ steps:
- mkdir -p bootstrap/cache
# Set proper permissions for Laravel
- chmod -R 775 storage bootstrap/cache
- php artisan key:generate
# Now run composer install with existing storage
# Now run composer install (vendor/ needed for artisan)
- composer install --prefer-dist --no-progress --no-interaction
# Generate app key after composer install
- php artisan key:generate
- composer validate --strict
- echo "✓ Composer validation passed"
# Uncomment when tests are ready: