Browse Source

Fix deploy conditions in CI script (#1157)

* Fix deploy conditions in CI script

The deploy conditions had been using a powershell-only variable, and not a environment variable. This meant that the deployment failed on both Windows and Linux (expected only on Linux).

* Remove an extra newline

* Remove Debug statements from appveyor build script
tags/2.0
Chris Johnston Christopher F 6 years ago
parent
commit
de4d415053
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      appveyor.yml

+ 2
- 2
appveyor.yml View File

@@ -83,7 +83,7 @@ deploy:
symbol_server: https://www.myget.org/F/discord-net/symbols/api/v2/package symbol_server: https://www.myget.org/F/discord-net/symbols/api/v2/package
on: on:
branch: dev branch: dev
isWindows: True
CI_WINDOWS: true
- provider: NuGet - provider: NuGet
server: https://www.myget.org/F/rogueexception/api/v2/package server: https://www.myget.org/F/rogueexception/api/v2/package
api_key: api_key:
@@ -91,4 +91,4 @@ deploy:
symbol_server: https://www.myget.org/F/rogueexception/symbols/api/v2/package symbol_server: https://www.myget.org/F/rogueexception/symbols/api/v2/package
on: on:
branch: dev branch: dev
isWindows: True
CI_WINDOWS: true

Loading…
Cancel
Save