Skip to content

Commit

Permalink
Merge branch 'develop' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel127 committed Nov 20, 2021
2 parents ccddd37 + 78a86dc commit 8dd645a
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .azure/workflows/azure-ci-development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ trigger:
- release/*

pr:
- master
- main
- develop

pool:
Expand Down
40 changes: 20 additions & 20 deletions .azure/workflows/azure-ci-release.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
trigger:
- master
- main

# no PR builds
pr: none
Expand All @@ -12,11 +12,11 @@ variables:

steps:

- task: ShellScript@2
displayName: 'Configure variables'
inputs:
scriptPath: '.azure/workflows/configure-variables-release.sh'
failOnStandardError: true
# - task: ShellScript@2
# displayName: 'Configure variables'
# inputs:
# scriptPath: '.azure/workflows/configure-variables-release.sh'
# failOnStandardError: true

# Install .NET Core SDK
- task: UseDotNet@2
Expand Down Expand Up @@ -81,18 +81,18 @@ steps:
inputs:
pollingTimeoutSec: '300'

- task: DotNetCoreCLI@2
displayName: 'Create Nuget packages'
inputs:
command: 'pack'
packagesToPack: '**/*.csproj'
configuration: '$(buildConfiguration)'
packDirectory: '$(Pipeline.Workspace)/nuget'
nobuild: true
versioningScheme: 'off'
# - task: DotNetCoreCLI@2
# displayName: 'Create Nuget packages'
# inputs:
# command: 'pack'
# packagesToPack: '**/*.csproj'
# configuration: '$(buildConfiguration)'
# packDirectory: '$(Pipeline.Workspace)/nuget'
# nobuild: true
# versioningScheme: 'off'

- task: PublishPipelineArtifact@1
displayName: 'Publish artifact'
inputs:
targetPath: '$(Pipeline.Workspace)/nuget'
artifact: 'Package'
# - task: PublishPipelineArtifact@1
# displayName: 'Publish artifact'
# inputs:
# targetPath: '$(Pipeline.Workspace)/nuget'
# artifact: 'Package'

0 comments on commit 8dd645a

Please sign in to comment.