Skip to content

Commit

Permalink
fix: sentry
Browse files Browse the repository at this point in the history
  • Loading branch information
andrasbacsai committed Nov 25, 2024
1 parent 53d7094 commit e5cd35d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Jobs/ApplicationDeploymentJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ private function deploy_docker_compose_buildpack()
$composeFile = $this->application->parse(pull_request_id: $this->pull_request_id, preview_id: data_get($this->preview, 'id'));
$this->save_environment_variables();
if (! is_null($this->env_filename)) {
$services = collect($composeFile['services']);
$services = collect(data_get($composeFile, 'services', []));
$services = $services->map(function ($service, $name) {
$service['env_file'] = [$this->env_filename];

Expand Down

0 comments on commit e5cd35d

Please sign in to comment.