From 1ac8187e51d5f6bf254d3c3f6cb904b00a4fffe0 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Thu, 7 Mar 2024 11:54:40 -0500 Subject: Fail if nuget_key is not found --- build.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'build.py') diff --git a/build.py b/build.py index 5ddccb1..b0fb0e7 100755 --- a/build.py +++ b/build.py @@ -491,6 +491,10 @@ def build_nuget( nuget_repo = configurations["nuget"]["feed_urls"]["stable"] nuget_key = getenv("NUGET_STABLE_KEY") + if nuget_key is None: + log(f"Error: Failed to get NUGET_*_KEY environment variable") + exit(1) + push_command = f"dotnet nuget push out/nuget/*.nupkg -s {nuget_repo} -k {nuget_key}" log(f">>>> {push_command}") os.system(push_command) -- cgit