From 252ba2bf3481d1595dd5d2e63ede34fd4e1e8ce8 Mon Sep 17 00:00:00 2001 From: Declan Smith Date: Fri, 19 Dec 2025 00:11:55 +1000 Subject: [PATCH] fix(build): remove unnecessary parameter requirements for GitHub release Removed redundant `NugetFeed` and `NugetApiKey` parameter requirements from the `PushToRelease` target in `ITargets.cs`. This simplifies configuration for GitHub release workflows. --- _atom/ITargets.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/_atom/ITargets.cs b/_atom/ITargets.cs index 294e148..43ac591 100644 --- a/_atom/ITargets.cs +++ b/_atom/ITargets.cs @@ -76,7 +76,6 @@ await PushPackageToNuget(FileSystem.AtomArtifactsDirectory / tool / toolPackageP .DescribedAs("Pushes artifacts to a GitHub release") .RequiresParam(nameof(GithubToken)) .ConsumesVariable(nameof(SetupBuildInfo), nameof(BuildVersion)) - .RequiresParam(nameof(NugetFeed), nameof(NugetApiKey)) .ConsumesArtifacts(nameof(Pack), ToolsToPack, PlatformNames) .Executes(async () => {