Changed CI script to include build number in artifact name.
This commit is contained in:
parent
b6cb8f9697
commit
5599fceef6
1 changed files with 5 additions and 5 deletions
10
appveyor.yml
10
appveyor.yml
|
@ -1,13 +1,13 @@
|
||||||
version: "3.0.0.{build}"
|
version: '3.0.0.{build}'
|
||||||
image: Visual Studio 2017
|
image: Visual Studio 2017
|
||||||
platform: x86
|
platform: x86
|
||||||
configuration: Release
|
configuration: Release
|
||||||
assembly_info:
|
assembly_info:
|
||||||
patch: true
|
patch: true
|
||||||
file: AssemblyInfo.*
|
file: AssemblyInfo.*
|
||||||
assembly_version: "{version}"
|
assembly_version: '{version}'
|
||||||
assembly_file_version: "{version}"
|
assembly_file_version: '{version}'
|
||||||
assembly_informational_version: "3.0.0 Alpha"
|
assembly_informational_version: '3.0.0 Alpha'
|
||||||
before_build:
|
before_build:
|
||||||
- nuget restore
|
- nuget restore
|
||||||
build_script:
|
build_script:
|
||||||
|
@ -26,5 +26,5 @@ after_test:
|
||||||
- codecov -f "coverage.xml"
|
- codecov -f "coverage.xml"
|
||||||
artifacts:
|
artifacts:
|
||||||
- path: SafeExamBrowser.Runtime\bin\$(platform)\$(configuration)
|
- path: SafeExamBrowser.Runtime\bin\$(platform)\$(configuration)
|
||||||
name: 3.0.0_Alpha
|
name: '$(appveyor_build_version)_Alpha'
|
||||||
type: zip
|
type: zip
|
||||||
|
|
Loading…
Reference in a new issue