Skip to content

Commit

Permalink
Fix for appveyor build loop
Browse files Browse the repository at this point in the history
  • Loading branch information
Joakim Wennergren committed Jan 15, 2018
1 parent 6669e4c commit dafed71
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ after_build:
- ps: >-
if ($($env:APPVEYOR_REPO_TAG) -eq "true" -and $env:CONFIGURATION -eq "Release") {
$ZipFileName = "CsvQuery-$($env:APPVEYOR_REPO_TAG_NAME)-$($env:PLATFORM).zip"
7z a $ZipFileName bin\$env:CONFIGURATION-$env:PLATFORM\CsvQuery.dll
7z a $ZipFileName .\bin\$env:CONFIGURATION-$env:PLATFORM\CsvQuery.dll
Push-AppveyorArtifact $ZipFileName
}
Expand All @@ -42,6 +42,7 @@ artifacts:

deploy:
provider: GitHub
tag: $(appveyor_repo_tag_name)
release: "%APPVEYOR_REPO_TAG_NAME% %APPVEYOR_REPO_COMMIT_MESSAGE%"
desription: "Release %APPVEYOR_REPO_TAG_NAME%"
auth_token:
Expand Down

0 comments on commit dafed71

Please sign in to comment.