Skip to content

Commit

Permalink
Use GITHUB_TOKEN to limit GitHub API rate-limiting
Browse files Browse the repository at this point in the history
  • Loading branch information
BMurri committed Feb 13, 2025
1 parent 480d62e commit 117cdea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/deploy-cromwell-on-azure/Deployer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1199,7 +1199,7 @@ void UpdateImageName(string key)

if (string.IsNullOrWhiteSpace(configuration.SolutionDir))
{
tar = AcrBuild.GetGitHubArchive(BuildType.CoA, string.IsNullOrWhiteSpace(configuration.GitHubCommit) ? new Version(targetVersion).ToString(3) : configuration.GitHubCommit);
tar = AcrBuild.GetGitHubArchive(BuildType.CoA, string.IsNullOrWhiteSpace(configuration.GitHubCommit) ? new Version(targetVersion).ToString(3) : configuration.GitHubCommit, GitHubArchive.GetAccessTokenProvider());
tarDisposable = tar as IAsyncDisposable;
}
else
Expand Down

0 comments on commit 117cdea

Please sign in to comment.