Skip to content

Commit

Permalink
update appveyor.yml with correct tokens and feeds
Browse files Browse the repository at this point in the history
  • Loading branch information
rossipedia committed Jun 13, 2018
1 parent a6fb0f9 commit 639ed70
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
16 changes: 9 additions & 7 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,27 +40,29 @@ deploy:
- provider: GitHub
release: $(APPVEYOR_REPO_TAG_NAME)
auth_token:
secure: gbdN6iXbtLTk1MiBecxRJvdoc6fR6x4AEFAQNuZ+UMR9NvQnXW12PXfd16gtGVGp
artifact: /.*\.nupkg/
secure: R4+VK7DPGDBh/IvVDn06bAqBr/QKFS5eB9OFQZLzKsapKq1QJ+ytmHx71v7mV9oO
artifact: artifacts/*
draft: false
prerelease: false
on:
appveyor_repo_tag: true

# for pre-release versions
# MyGet
- provider: NuGet
server: https://www.myget.org/F/bretcope/api/v2/package
symbol_server: https://www.myget.org/F/bretcope/symbols/api/v2/package
api_key:
secure: NiH62CvEa6ztPGnR9glvKexCL5sJStB62JcJ/8CcVJJAj7rkCzZvfN87E5xPpNd0
artifact: /.*\.nupkg/
secure: 4OhfGM3pJQHTs5OYskc448dwXt8DqPec7vdyK+G+AS5v0m8pSxyP30UoZyTanDcz
artifact: /artifacts/.*\.nupkg/
skip_symbols: false
on:
branch: master

# for release versions
# NuGet.org
- provider: NuGet
api_key:
secure: NiH62CvEa6ztPGnR9glvKexCL5sJStB62JcJ/8CcVJJAj7rkCzZvfN87E5xPpNd0
artifact: /.*\.nupkg/
artifact: /artifacts/.*\.nupkg/
skip_symbols: false
on:
appveyor_repo_tag: true
Expand Down
2 changes: 1 addition & 1 deletion build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ function GeneratePrereleaseVersion ([System.Text.RegularExpressions.GroupCollect
else
{
$patch = [int]::Parse($versionGroups["Patch"]) + 1
$version += "$patch-unStable"
$version += "$patch-unstable"
}

$version += "-$buildNum"
Expand Down

0 comments on commit 639ed70

Please sign in to comment.