diff options
author | Zach Hilman <zachhilman@gmail.com> | 2019-10-05 00:09:11 -0400 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2019-10-05 00:09:11 -0400 |
commit | d45ad75404e75d2d4fbf3cc0d01d4a01cda1dabb (patch) | |
tree | ab25815c1ade5a487b4b8f59d76a2a36ed6bda17 /.ci/templates/build-standard.yml | |
parent | 0a662d009b1567bde5b0aa91e07365224858ca18 (diff) |
ci: Add version counter variable
Diffstat (limited to '.ci/templates/build-standard.yml')
-rw-r--r-- | .ci/templates/build-standard.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.ci/templates/build-standard.yml b/.ci/templates/build-standard.yml index aa180894e..7422c8346 100644 --- a/.ci/templates/build-standard.yml +++ b/.ci/templates/build-standard.yml @@ -1,3 +1,6 @@ +parameters: + version: '' + jobs: - job: build displayName: 'standard' @@ -20,4 +23,5 @@ jobs: - template: ./build-single.yml parameters: artifactSource: 'false' - cache: $(parameters.cache)
\ No newline at end of file + cache: $(parameters.cache) + version: $(parameters.version)
\ No newline at end of file |