Skip to content

Commit

Permalink
Fix Deploy Task Error
Browse files Browse the repository at this point in the history
The commit 2dd7b76 changed the name of the Nuget
packages we archive. The DownloadArtifactsTask was
not updated to match. It should have been using `macos`
rather than `mac` for it nuget package name.
  • Loading branch information
dellis1972 committed Sep 24, 2024
1 parent 2dd7b76 commit 54fc956
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/DeployTasks/DownloadArtifactsTask.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public sealed class DownloadArtifactsTask : AsyncFrostingTask<BuildContext>
public override async Task RunAsync(BuildContext context)
{
context.CreateDirectory("nugets");
foreach (var os in new[] { "windows", "mac", "linux" })
foreach (var os in new[] { "windows", "macos", "linux" })
await context.GitHubActions().Commands.DownloadArtifact($"nuget-{os}", "nugets");
}
}

0 comments on commit 54fc956

Please sign in to comment.