From 421857fdae7a202b8ebe5208f5ab2db96d83d9cb Mon Sep 17 00:00:00 2001 From: wiz0u <11647984+wiz0u@users.noreply.github.com> Date: Wed, 4 Aug 2021 01:38:49 +0200 Subject: [PATCH] Set up CI with Azure Pipelines [skip ci] --- azure-pipelines.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..b092eaa --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,21 @@ +trigger: +- master + +pool: + vmImage: ubuntu-latest + +variables: + buildConfiguration: 'Release' + +steps: +- task: DotNetCoreCLI@2 + inputs: + command: 'pack' + packagesToPack: '**/*.csproj' + versioningScheme: 'byBuildNumber' + +- task: NuGetCommand@2 + inputs: + command: 'push' + packagesToPush: '$(Build.ArtifactStagingDirectory)/**/*.nupkg;!$(Build.ArtifactStagingDirectory)/**/*.symbols.nupkg' + nuGetFeedType: 'internal'