From 39b4263062520891e3004fe7ef602ed8b22cce14 Mon Sep 17 00:00:00 2001 From: Victor Irzak Date: Tue, 28 Jul 2026 10:53:23 -0400 Subject: [PATCH] Sign with the 1.0 release of the signing tool sign-universal dropped its alpha suffix; 1.0.32 is the first stable release. Same tool, same command, same flags. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index dcdd3fd..c538a9b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -147,7 +147,7 @@ jobs: # Linux trust stores do not carry, and NuGet refuses to sign against a chain it # cannot build. Without it this fails with only "Certificate chain validation failed". run: | - dotnet dnx SignUniversal.Cli@1.0.31-alpha --yes sign packages/*.nupkg \ + dotnet dnx SignUniversal.Cli@1.0.32 --yes sign packages/*.nupkg \ --trust-signing-root \ --trusted-signing-endpoint "${{ secrets.TRUSTED_SIGNING_ENDPOINT }}" \ --trusted-signing-account "${{ secrets.TRUSTED_SIGNING_ACCOUNT }}" \