Skip to content

Commit

Permalink
Use single quotes to allow substitution [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
Mehmet Seckin committed Nov 23, 2019
1 parent 9492fba commit 8147fc9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pipelines/cd.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
variables:
'variables:
version: '0.1.3'

name: $(version)$(rev:.r)
Expand Down Expand Up @@ -38,21 +38,21 @@ stages:
inputs:
targetPath: '$(artifactsDirectory)'
- task: ArchiveFiles@2
displayName: "Create $(win10_x64_artifactPath).zip"
displayName: 'Create $(win10_x64_artifactPath).zip'
inputs:
rootFolderOrFile: '$(win10_x64_artifactPath)'
includeRootFolder: false
archiveFile: '$(win10_x64_artifactPath).zip'
- task: ArchiveFiles@2
displayName: "Create $(linux_x64_artifactPath).tar.gz"
displayName: 'Create $(linux_x64_artifactPath).tar.gz'
inputs:
rootFolderOrFile: '$(linux_x64_artifactPath)'
includeRootFolder: false
archiveFile: '$(linux_x64_artifactPath).tar.gz'
archiveType: 'tar'
tarCompression: 'gz'
- task: ArchiveFiles@2
displayName: "Create $(osx_x64_artifactPath).tar.gz"
displayName: 'Create $(osx_x64_artifactPath).tar.gz'
inputs:
rootFolderOrFile: '$(osx_x64_artifactPath)'
includeRootFolder: false
Expand All @@ -72,4 +72,4 @@ stages:
changeLogCompareToRelease: 'lastFullRelease'
changeLogType: 'commitBased'
isDraft: true
isPreRelease: true
isPreRelease: true'

0 comments on commit 8147fc9

Please sign in to comment.