Skip to content

Commit

Permalink
added missing token
Browse files Browse the repository at this point in the history
  • Loading branch information
jbtule committed Aug 11, 2017
1 parent 690565b commit 4f35540
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ skip_branch_with_pr: true

environment:
vsuffix: alpha$(APPVEYOR_BUILD_NUMBER)
is_prerelease: true

before_build:
- cmd: cd Keyczar
Expand Down Expand Up @@ -43,9 +44,13 @@ deploy:
symbol_server: https://www.myget.org/F/keyczar-dotnet-ci/symbols/api/v2/package

- provider: GitHub

artifact: /.*\.nupkg/ # upload all NuGet packages to release assets
description: 'Release description'
auth_token:
secure: JyJYSgeJYFmkaFy7Gro2dQyv/fqZwz1EzJmp2Nf99H6HUpxNR7ilA/OGPcQk0pA8
draft: true
prerelease: true
prerelease: $(is_prerelease)
on:
appveyor_repo_tag: true # deploy on tag push only

Expand All @@ -58,11 +63,13 @@ for:
- /v.*-beta/
environment:
vsuffix: beta$(APPVEYOR_BUILD_NUMBER)
is_prerelease: true
- branches:
only:
- /v[\d,.]*/
configuration: Release
environment:
vsuffix: $(APPVEYOR_BUILD_NUMBER)
is_prerelease: false


0 comments on commit 4f35540

Please sign in to comment.