diff options
| author | Jeremy Rimpo <jrim@rimpo.org> | 2019-05-21 17:54:43 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-05-21 17:54:43 -0500 |
| commit | 2a09e17cf4b888bfa38ec73686204427e4b1dea3 (patch) | |
| tree | 5e7f69563bfa60946861900e4c8c21e022ee95d3 | |
| parent | 86ed2c7c4e6e2505e765518098f7a4a3289e0bd9 (diff) | |
CI: FileName is for the target not the source
| -rw-r--r-- | appveyor.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml index ef5a5b25..c7a91550 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -26,7 +26,7 @@ on_success: - ps: ./send.ps1 success $env:WEBHOOK_URL on_failure: - ps: Set-Location -Path $env:APPVEYOR_BUILD_FOLDER - - ps: Push-AppveyorArtifact $env:APPVEYOR_BUILD_FOLDER -FileName stdout.log - - ps: Push-AppveyorArtifact $env:APPVEYOR_BUILD_FOLDER -FileName stderr.log + - ps: Push-AppveyorArtifact ${env:APPVEYOR_BUILD_FOLDER}\stdout.log + - ps: Push-AppveyorArtifact ${env:APPVEYOR_BUILD_FOLDER}\stderr.log - ps: Invoke-RestMethod https://raw.githubusercontent.com/DiscordHooks/appveyor-discord-webhook/master/send.ps1 -o send.ps1 - ps: ./send.ps1 failure $env:WEBHOOK_URL |
