From 0a1848654fb32086303baf0397bfae950de2eecc Mon Sep 17 00:00:00 2001 From: Robin Jones Date: Sat, 20 Jan 2024 18:19:27 +0000 Subject: [PATCH] Work CI-CD - Add variable group for signing workflow. ***NO_CI*** --- azure-pipelines.yml | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 977787a..9b54a8b 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -40,11 +40,17 @@ pool: vmImage: 'windows-latest' variables: - DOTNET_NOLOGO: true - solution: 'nanoFramework.System.IO.FileSystem.sln' - buildPlatform: 'Any CPU' - buildConfiguration: 'Release' - nugetPackageName: 'nanoFramework.System.IO.FileSystem' + - group: sign-client-credentials + - name: DOTNET_NOLOGO + value: true + - name: buildPlatform + value: 'Any CPU' + - name: buildConfiguration + value: 'Release' + - name: solution + value: 'nanoFramework.System.IO.FileSystem.sln' + - name: nugetPackageName + value: 'nanoFramework.System.IO.FileSystem' steps: