我正在尝试通过 laravel vapor 部署我的更改,它告诉我:
/home/runner/work/_temp/c6e18c6d-a186-46b8-9628-a123b8013114.sh: line 1: Merge: command not found
/home/runner/work/_temp/c6e18c6d-a186-46b8-9628-a123b8013114.sh: line 3: hot-fix/vapor-issue: No such file or directory
Unable to find your project's dependencies. Please run the composer "install" command first.
Error: Process completed with exit code 1.
我试图改变一些东西,vapor.yml
但没有解决:
environments:
staging:
timeout: 10
concurrency: 94
warm: 20
storage: str-staging
memory: 768
cli-memory: 768
runtime: 'php-7.4'
database: db-development
scheduler: false
queue: true
queue-concurrency: 1
queue-timeout: 120
queue-memory: 768
mail: false
domain:
- staging.example.com
build:
- 'composer install -o --no-dev'
- 'php artisan event:cache'
- 'php artisan config:cache'
- 'php artisan route:cache'
deploy:
- 'php artisan migrate --force'
任何想法 ?