Skip to content

Commit

Permalink
Fixed packaging command (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
shibayan authored Jun 30, 2019
1 parent 40bc32c commit cb24202
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,16 @@ after_build:
if ($env:APPVEYOR_REPO_TAG -eq $true) {
xcopy .\IIS.Compression\bin\Release\x86\* .\build\32bit\ /I
xcopy .\IIS.Compression\bin\Release\x64\* .\build\64bit\ /I
nuget pack .\IIS.Compression.SiteExtension.nuspec -BasePath .\build -OutputDirectory .\ -Version $env:APPVEYOR_REPO_TAG_NAME
nuget pack .\IIS.Compression.SiteExtension.nuspec -BasePath .\build -OutputDirectory .\ -Version $($env:APPVEYOR_REPO_TAG_NAME.Substring(1))
}
artifacts:
- path: '*.nupkg'

deploy:
provider: NuGet
api_key:
secure: z8WTDEqftESoalyJXT6Fta22vbcgwZ2M9FXLpU4KnAEtcsXbQVpoNURDBk0W8b6S
skip_symbols: true
artifact: /.*\.nupkg/
on:
appveyor_repo_tag: true
- provider: NuGet
api_key: $(NUGET_API_KEY)
skip_symbols: true
artifact: /.*\.nupkg/
on:
appveyor_repo_tag: true

0 comments on commit cb24202

Please sign in to comment.