Skip to content

Commit

Permalink
Fix artifacts.zip path
Browse files Browse the repository at this point in the history
  • Loading branch information
dellis1972 committed Aug 28, 2024
1 parent 6eb5ee0 commit e1b7076
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/DeployTasks/UploadArtifactsTask.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ public override async Task RunAsync(BuildContext context)

await context.GitHubActions().Commands.UploadArtifact(new DirectoryPath(context.NuGetsDirectory.FullPath), $"nuget-{os}");
context.Zip(new DirectoryPath(context.BuildOutput), "artifacts.zip");
await context.GitHubActions().Commands.UploadArtifact(new DirectoryPath(context.BuildOutput + "/artifacts.zip"), "artifacts.zip");
await context.GitHubActions().Commands.UploadArtifact(new DirectoryPath("artifacts.zip"), "artifacts.zip");
}
}

0 comments on commit e1b7076

Please sign in to comment.