19 lines
390 B
YAML
19 lines
390 B
YAML
steps:
|
|
- task: DotNetCoreCLI@2
|
|
inputs:
|
|
command: 'pack'
|
|
projects: 'Discord.Net.sln'
|
|
configuration: $(buildConfiguration)
|
|
nobuild: True
|
|
arguments: '/p:BuildNumber=$(buildNumber) /p:IsTagBuild=$(buildTag)'
|
|
|
|
# TODO: build nuspec
|
|
|
|
- task: PublishBuildArtifacts@1
|
|
|
|
condition: |
|
|
and (
|
|
succeeded(),
|
|
eq(variables['Build.SourceBranch'], 'refs/heads/ci/azure')
|
|
)
|