Rebuild action

This commit is contained in:
IvanZosimov
2023-04-10 16:24:56 +02:00
parent 4f6b2f576a
commit 660c25a321
2 changed files with 30 additions and 22 deletions

View File

@ -46,14 +46,14 @@ export class DotnetVersionResolver {
} else if (this.isNumericTag(major) && this.isNumericTag(minor)) {
this.resolvedArgument.value = `${major}.${minor}`;
} else {
const httpClient = new hc.HttpClient('actions/setup-dotnet', [], {
allowRetries: true,
maxRetries: 3
});
this.resolvedArgument.value = await this.getLatestVersion(
httpClient,
[major, minor]
);
const httpClient = new hc.HttpClient('actions/setup-dotnet', [], {
allowRetries: true,
maxRetries: 3
});
this.resolvedArgument.value = await this.getLatestVersion(httpClient, [
major,
minor
]);
}
this.resolvedArgument.qualityFlag = +major >= 6 ? true : false;
}