We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a35a40f commit cf633d2Copy full SHA for cf633d2
appveyor.yml
@@ -38,9 +38,9 @@ test_script:
38
- npm run test:it
39
40
on_success:
41
- - ps: if ($env:APPVEYOR_REPO_TAG_NAME != "") { echo $env:APPVEYOR_REPO_TAG_NAME } else { echo "No tag" }
42
- - ps: if ($env:nodejs_version = "12") { echo "node 12" } else { echo "node != 12" }
43
- - ps: if ($env:APPVEYOR_REPO_TAG_NAME != "") && ($env:nodejs_version = "12") { npm publish }
+ - ps: if ($env:APPVEYOR_REPO_TAG_NAME) { echo $env:APPVEYOR_REPO_TAG_NAME }
+ - ps: if ($env:nodejs_version = "12") { echo "node 12" }
+ - ps: if ($env:APPVEYOR_REPO_TAG_NAME -and $env:nodejs_version = "12") { npm publish }
44
45
build: off
46
version: "{build}"
0 commit comments