Skip to content

Commit

Permalink
Update appveyor.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
pieceofsummer committed Oct 25, 2016
1 parent 62d6009 commit df3d7ee
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,21 @@ before_build:

build_script:
- ps:
- cmd: dotnet build src/Hangfire.Console --configuration Release --version-suffix %APPVEYOR_BUILD_NUMBER%
- cmd: dotnet build tests/Hangfire.Console.Tests --configuration Release --version-suffix %APPVEYOR_BUILD_NUMBER%
- cmd: dotnet build src/Hangfire.Console -c Release
- cmd: dotnet build tests/Hangfire.Console.Tests -c Release

after_build:
- cmd: dotnet pack src/Hangfire.Console --configuration Release --version-suffix %APPVEYOR_BUILD_NUMBER%
- cmd: dotnet pack src/Hangfire.Console -o artifacts -c Release

test_script:
- cmd: dotnet test tests/Hangfire.Console.Tests

artifacts:
- path: 'artifacts/**/*.nupkg'

deploy:
- provider: NuGet
server: https://www.myget.org/F/pieceofsummer/api/v2/package
api_key:
secure: zGtPSEbAdSdw+R1A4kL+xAK92xPP3vlA7Jmwo58OVL1H5OcyqhEbK19kcxVJrD3D
skip_symbols: true

0 comments on commit df3d7ee

Please sign in to comment.