Skip to content

Commit 5d3b25d

Browse files
author
Jacques Kang
committed
ci: fix the build
1 parent d2009e4 commit 5d3b25d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

build/azure-pipelines.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ steps:
2626
- script: |
2727
git config --global user.name "Azure DevOps"
2828
git config --global user.email "[email protected]"
29-
git tag -a $(Build.BuildNumber) -m "v$(Build.BuildNumber)"
30-
git push origin $(Build.BuildNumber)
29+
git tag -a "v$(Build.BuildNumber)" -m "v$(Build.BuildNumber)"
30+
git push origin "v$(Build.BuildNumber)"
3131
displayName: Tag source

build/templates/pack-publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ steps:
44
inputs:
55
command: 'pack'
66
packagesToPack: 'src/**/*.csproj'
7+
configuration: Release
78
nobuild: true
89
versioningScheme: 'byEnvVar'
910
versionEnvVar: 'Build.BuildNumber'

0 commit comments

Comments
 (0)