Skip to main content
Sign in
Snippets Groups Projects
Commit 6e9ae9c8 authored by Petar Hristov's avatar Petar Hristov :speech_balloon:
Browse files

Fix: Reporting name

parent 6cc5a81a
No related branches found
No related tags found
1 merge request!31BREAKING: Migrated KPI Generator to the APIv2 infrastructure
Pipeline #1212179 passed
......@@ -45,11 +45,11 @@ public class CompleteReporting
var reportingFiles = await GenerateReportingAsync();
// Publish to GitLab first, if that fails, publish to local storage
var success = await _gitlabStorageService.PublishAsync("Project Reporting", reportingFiles);
var success = await _gitlabStorageService.PublishAsync("Complete Reporting", reportingFiles);
if (!success)
{
Console.WriteLine("Failed to publish to GitLab. Publishing to local storage instead.");
success = await _localStorageService.PublishAsync("Project Reporting", reportingFiles);
success = await _localStorageService.PublishAsync("Complete Reporting", reportingFiles);
}
return success;
}
......
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment