Skip to content

Commit

Permalink
Create directory for job
Browse files Browse the repository at this point in the history
  • Loading branch information
mburumaxwell committed Sep 20, 2023
1 parent b200bfa commit 5da2834
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions server/Tingle.Dependabot/Workflow/UpdateRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ public async Task CreateAsync(Repository repository, RepositoryUpdate update, Up
var registries = update.Registries?.Select(r => repository.Registries[r]).ToList();
var credentials = MakeExtraCredentials(registries, secrets); // add source credentials when running the in v2
var directory = Path.Join(options.WorkingDirectory, job.Id);
if (!Directory.Exists(directory)) Directory.CreateDirectory(directory);

// prepare the container
var volumeName = "working-dir";
Expand Down

0 comments on commit 5da2834

Please sign in to comment.