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 3c3f7ad commit 6223e1cCopy full SHA for 6223e1c
appveyor.yml
@@ -38,7 +38,9 @@ test_script:
38
- npm run test:it
39
40
on_success:
41
- - IF defined APPVEYOR_REPO_TAG_NAME npm publish
+ - sh: if [ -z ${APPVEYOR_REPO_TAG_NAME+x} ] ; then echo $APPVEYOR_REPO_TAG_NAME; else echo "No tag"; fi
42
+ - sh: if [ "${nodejs_version+x}" = "12" ]; then echo "node 12"; else echo "node != 12"; fi
43
+ - sh: if [ -z ${APPVEYOR_REPO_TAG_NAME+x} ] && [ "${nodejs_version+x}" = "12" ]; then npm publish; fi
44
45
build: off
46
version: "{build}"
0 commit comments