Skip to content

Commit

Permalink
appveyor: use GitVersion_NuGetVersion, zip Caliburn sample
Browse files Browse the repository at this point in the history
  • Loading branch information
punker76 committed Feb 3, 2018
1 parent 6812fbb commit 2aa40a0
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

after_build:
- ps: cd src
- ps: .paket\paket pack --version $env:GitVersion_LegacySemVerPadded bin
- ps: .paket\paket pack --version $env:GitVersion_NuGetVersion bin
- ps: cd..

cache:
Expand All @@ -37,7 +37,10 @@
artifacts:
- path: \src\bin\MahApps.Metro.*.nupkg
- path: \src\bin\MetroDemo\
name: MetroDemo.$(GitVersion_LegacySemVerPadded)
name: MetroDemo.v$(GitVersion_NuGetVersion)
type: zip
- path: \src\bin\Caliburn.Metro.Demo\
name: Caliburn.MetroDemo.v$(GitVersion_NuGetVersion)
type: zip

# configuration for master/Release branch
Expand Down Expand Up @@ -65,7 +68,7 @@

after_build:
- ps: cd src
- ps: .paket\paket pack --version $env:GitVersion_LegacySemVerPadded bin
- ps: .paket\paket pack --version $env:GitVersion_NuGetVersion bin
- ps: cd..

cache:
Expand All @@ -75,5 +78,8 @@
artifacts:
- path: \src\bin\MahApps.Metro.*.nupkg
- path: \src\bin\MetroDemo\
name: MetroDemo.$(GitVersion_LegacySemVerPadded)
name: MetroDemo.v$(GitVersion_NuGetVersion)
type: zip
- path: \src\bin\Caliburn.Metro.Demo\
name: Caliburn.MetroDemo.v$(GitVersion_NuGetVersion)
type: zip

0 comments on commit 2aa40a0

Please sign in to comment.